我在我的.NET Core应用程序中使用OpenIddict进行JWT令牌身份验证。我已关注this tutorial但我现在收到以下错误:
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...
ConfigureServices
中的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>();
}
我不知道该如何处理,因为我在使用AddIdentity
时无法添加DbContext。
我的连接字符串很好,在添加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);
}
答案 0 :(得分:2)
由于EntityFramework Core RC2中的设计更改,您现在需要手动流动DbContextOptions
或直接在OnModelCreating
中配置连接字符串。
尝试将此构造函数添加到您的数据库上下文(应该派生自OpenIddictContext
):
public partial class MyDbContext : OpenIddictContext<ApplicationUser> {
public MyDbContext(DbContextOptions options)
: base(options) {
}
}