我有两个实体框架上下文,一个用于MySql,一个用于sql。如果我运行应用程序,我会收到以下错误
The default DbConfiguration instance was used by the Entity Framework before the 'MySqlEFConfiguration' type was discovered.
但是,如果我确实通过给它Database.SetInitializer<MySqlContext>
发现应用程序启动时的数据库类型,我的正常sql上下文现在正尝试使用mysql提供程序进行连接。
我的MySql上下文
[DbConfigurationType(typeof(MySqlEFConfiguration))]
public class ZipCodeContext : DbContext
{
public DbSet<ZipCode> ZipCodes { get; set; }
}
我的正常情境
public class MyContext : DbContext
{
public DbSet<MyClass> MyClasses{get;set;}
}
最后是我的实体框架部分的web配置
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6" />
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
我希望这很清楚,我正在敲桌子
答案 0 :(得分:1)
我的Uow.cs有2个不同的上下文作为变量。因此,在对象初始化期间,即使我只对第二个上下文感兴趣,也会静默应用第一个上下文的DbConfiguration。因此,在我更改设计之前,第二个上下文已响应相同的错误。
<强>更新强>
更多详细信息 - 我已更新代码以使用相同的Context for Oracle和MS SQL版本。为了提供相应的db配置,我在与上下文相同的程序集中添加了自定义配置类,并将其与DbConfigurationType属性一起使用。在你的情况下,它可能是这样的:
public class CustomDbConfiguration : DbConfiguration
{
public CustomDbConfiguration()
{
if (DbChecker.MySqlInUse)
SetConfiguration(new MySqlEFConfiguration());
}
}
并且两种情境都试图应用它
[DbConfigurationType(typeof(CustomDbConfiguration))]
public class ZipCodeContext : DbContext
{
public DbSet<ZipCode> ZipCodes { get; set; }
}
[DbConfigurationType(typeof(CustomDbConfiguration))]
public class MyContext : DbContext
{
public DbSet<MyClass> MyClasses { get; set; }
}
答案 1 :(得分:0)
仅供参考 - 我遇到了同样的问题。解决问题的唯一方法是在程序执行开始时添加以下代码。
var needsToBeInstantiated = new EFDBContextConfiguration();
EFDBContextConfiguration.SetConfiguration( needsToBeInstantiated );