gpt4 book ai didi

entity-framework-6 - EF Core - 尚未为此 DbContext 配置数据库提供程序

转载 作者:行者123 更新时间:2023-12-02 03:46:16 26 4
gpt4 key购买 nike

我是 EF Core 1.0 的新手。当我在数据库迁移期间运行以下命令时出现以下错误

命令

 migrations add ApplicationUserIsActive -c ApplicationDbContext

错误:

System.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. If AddDbContext is used, then also ensure that your DbContext type accepts a DbContextOptions object in its constructor and passes it to the base constructor for DbContext.

StartUp.cs

public class Startup
{
public IConfigurationRoot Configuration { get; set; }

public Startup(IHostingEnvironment env)
{
var builder = new ConfigurationBuilder()
.SetBasePath(env.ContentRootPath)
.AddJsonFile("appsettings.json");

Configuration = builder.Build();
}

public void ConfigureServices(IServiceCollection services)
{

services.AddEntityFrameworkSqlServer()
.AddDbContext<ApplicationDbContext>((serviceProvider, options) =>
options.UseSqlServer("Server=(localdb)\\mssqllocaldb;Database=employee;Trusted_Connection=True;MultipleActiveResultSets=true;")
.UseInternalServiceProvider(serviceProvider));

services.AddEntityFrameworkSqlServer()
.AddDbContext<EmplooyeeDbContext>((serviceProvider, options) =>
options.UseSqlServer("Server=(localdb)\\mssqllocaldb;Database=employee;Trusted_Connection=True;MultipleActiveResultSets=true;")
.UseInternalServiceProvider(serviceProvider));

services.AddTransient<IUserContext, SeedUserContext>();
}

}

.csproj 文件

 <ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="1.0.0">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="1.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.DataAnnotations" Version="1.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />

但是,当我对其他 DBContext 即“EmplooyeeDbContext”执行迁移命令时,迁移命令工作正常。

如何解决这个问题?

最佳答案

我发现了这个问题。这是由于“ApplicationDbContext”的默认构造函数导致了该问题。删除“ApplicationDbContext”的默认构造函数后,一切都开始正常工作。

感谢大家的支持。

关于entity-framework-6 - EF Core - 尚未为此 DbContext 配置数据库提供程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44574358/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com