大家好我很喜欢连接到sql数据库服务器。我正在使用Entity framework v6并首次尝试代码第一种方法。下面我将向您展示我的app.config
文件和错误消息。我收到了类似的问题,大部分答案都是关于遗漏EntityFramework.SqlServer.dll
我引用了这个dll
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<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>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="mssqllocaldb" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
<connectionStrings>
<add name="HotelDB"
connectionString="Data Source=(localdb)\v11.0;Initial Catalog=master;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"/>
</connectionStrings>
</configuration>
错误讯息:
System.InvalidOperationException:找不到具有不变名称“System.Data.SqlClient”的ADO.NET提供程序的实体框架提供程序。确保提供程序已在应用程序配置文件的“entityFramework”部分中注册。有关详细信息,请参阅http://go.microsoft.com/fwlink/?LinkId=260882。
答案 0 :(得分:3)
您是否找到了解决此问题的方案?否则你可以看看这里:Entity Framework Provider type could not be loaded?
大多数情况下,当我看到此异常时,这是因为Web应用程序没有安装Entity Framework(和/或缺少EntityFramework.SqlServer.dll
)。
举个例子,如果解决方案中有2个项目:
并在DataAccess项目中安装了Entity Framework。当想要从WebApp中的DataAccess项目调用类(例如存储库)上的方法时,需要做两件事:
当DataAccess安装了EF并随后添加为WebApp的引用时,WebApp项目(通常)也将安装EF。有时在意外情况下,WebApp中的EF安装失败。因此,不添加所需的引用并显示您提到的异常消息。希望这个答案能够帮助其他人。
答案 1 :(得分:1)
答案 2 :(得分:0)
如果解决方案没有任何效果,那么请检查WebApp的packages.config和Entity Framework版本的DataAccess。如果您在WebApp的packages.config文件中看到或未看到EF的条目,请转到引用并从WebApp中删除EF并使用程序包管理器控制台再次安装它,并提供以下命令:
Install-Package“EntityFramework”-Version(版本号) 其中版本号是DataAccess的packages.config中存在的版本。 例: Install-Package“EntityFramework”-Version“6.1.3”