在我的OpenIddict核心应用程序中,我使用.NET进行JWT令牌身份验证。我已经跟踪了本教程,但现在收到了以下错误:
InvalidOperationException: No database provider has been configured for this DbContext. A provider can be configured by overriding the DbContext.OnConfiguring method or by using AddDbContext on the application service provider...Startup.cs中的My Startup.cs方法
public void ConfigureServices(IServiceCollection services)
{
var builder = new ConfigurationBuilder()
.AddJsonFile("appsettings.json");
Configuration = builder.Build();
services.AddEntityFrameworkSqlServer()
.AddDbContext<MyDbContext>(options =>
options.UseSqlServer(Configuration["Data:MyDbContext:ConnectionString"]));
services.AddIdentity<ApplicationUser, ApplicationRole>()
.AddEntityFrameworkStores<MyDbContext>()
.AddDefaultTokenProviders()
.AddOpenIddictCore<Application>(config => config.UseEntityFramework());
services.AddMvc();
// for seeding the database with the demo user details
//services.AddTransient<IDatabaseInitializer, DatabaseInitializer>();
services.AddScoped<OpenIddictManager<ApplicationUser, Application>, CustomOpenIddictManager>();
}不知道该怎么做,因为我不能在使用DbContext时添加AddIdentity。
我的连接字符串很好,添加OpenIddict之前一切都正常。
更新这里是我的appsettings.json文件:
{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Verbose",
"System": "Information",
"Microsoft": "Information"
}
},
"Data": {
"DefaultConnection": {
"ConnectionString": "my connection string"
},
"SaleboatContext": {
"ConnectionString": "my connection string"
}
}
}我的DbContext:
public class ApplicationUser : IdentityUser { }
public partial class MyDbContext : IdentityDbContext<ApplicationUser>
{
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
}发布于 2016-05-09 15:29:09
由于EntityFramework Core RC2中的设计更改,您现在需要手动地流DbContextOptions或在OnModelCreating中直接配置连接字符串。
尝试将此构造函数添加到DB上下文(应该从OpenIddictContext派生):
public partial class MyDbContext : OpenIddictContext<ApplicationUser> {
public MyDbContext(DbContextOptions options)
: base(options) {
}
}https://stackoverflow.com/questions/37026273
复制相似问题