我遇到与问题中提出的问题类似的问题 No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlClient',错误包含以下消息:
“具有不变名称'System.Data.SqlClient'的ADO.NET提供程序未在计算机或应用程序配置文件中注册,或者无法加载。有关详细信息,请参阅内部异常。”
正如相关问题的答案所示,我已通过软件包管理器控制台重新安装了实体框架(EF6),但错误仍然存在。我还检查了我的项目中引用了EntityFramework.SqlServer.dll。 以下是存储在App.config中的连接字符串:
<add name="DesignModel" ConnectionString="metadata=res://*/DesignModel.csdl|res://*/DesignModel.ssdl|res://*/DesignModel.msl;provider=System.Data.SqlClient;provider connection string="data source=C071E;initial catalog=CTD2;integrated security=True;multipleactiveresultsets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
我有另一个项目,我使用EntityFramework创建完全相同的实体和上下文,它工作正常,这使得这更令人费解。
尝试执行此行时会显示错误:
DesignModel designContext = new DesignModel();
designContext.MoPerfIDs.Load();
其中DesignModel是继承DbContext的类的名称。
这是完整的App.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="ppe.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="DesignModel" connectionString="metadata=res://*/DesignModel.csdl|res://*/DesignModel.ssdl|res://*/Design Model.msl;provider=System.Data.SqlClient;provider connection string="data source=MONNMC071E;initial catalog=CTD2;integrated security=True;multipleactiveresultsets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="System.Data.SqlClient" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>
任何帮助将不胜感激。提前谢谢。
答案 0 :(得分:2)
您需要为System.Data.SqlClient SQL连接类型注册Entity Framework提供程序。 你应该在app.config:
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
答案 1 :(得分:1)
仍然不确定导致问题的原因,但最终创建了一个新的解决方案并从我的项目中复制了所有内容。现在工作正常。真的很奇怪。
答案 2 :(得分:1)
只需从nuget安装“MySql.Data.Entity”即可!它将自动安装mysql ado驱动程序和实体驱动程序!
答案 3 :(得分:0)
System.Data.SqlClient
SQL连接类型注册实体框架提供程序。
您想将以下内容添加到app.config
/ web.config
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="System.Data.SqlClient" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>
答案 4 :(得分:0)
尝试添加
var _ = System.Data.Entity.SqlServer.SqlProviderServices.Instance;
在你的designContext的文件中。
答案 5 :(得分:0)
我的问题是,为了捕获另一个异常,我启用了CLR异常。我忘了禁用它。
我在异常设置中禁用了它。它忽略了这个异常,然后自动运行并为我创建了一个db(在我的例子中)。
答案 6 :(得分:0)
我收到了这个错误,但对我来说这是完全不同的。
我必须编辑:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config
和
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config
搜索DbProviderFactories
这两个配置看起来像这样:
<system.data>
<DbProviderFactories>
<add name="IBM DB2 for i .NET Provider" invariant="IBM.Data.DB2.iSeries" description=".NET Framework Data Provider for IBM i" type="IBM.Data.DB2.iSeries.iDB2Factory, IBM.Data.DB2.iSeries, Version=12.0.0.0, Culture=neutral, PublicKeyToken=9cdb2ebfb1f93a26" />
</DbProviderFactories>
<DbProviderFactories />
</system.data>
当我删除尾随<DbProviderFactories />
后,所有内容都重新开始工作。
我只能通过查看Unable to find the requested .Net Framework Data Provider
找到答案来解决问题:
答案 7 :(得分:-1)
您可以尝试两种选择。
1)手动加载“System.Data.SqlClient”
在您的上下文类
中包含follow语句 var type = typeof(System.Data.Entity.SqlServer.SqlProviderServices);
2)不要加载“System.Data.SqlClient”
改变
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
到
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
我希望你的问题得到解决。
答案 8 :(得分:-1)
如果在调试时在Visual Studio上收到此错误,则在您安装了另一个数据库提供程序或带有数据库提供程序的IDE后,就会发生这种情况。在计算机上安装Delphi后,我遇到了此错误。
解决方案:只需编辑C:\ Windows \ Microsoft.NET \ Framework \ v4.0.30319 \ Config \ machine.config并删除标签。