无法加载实体框架提供程序类型?

无法加载实体框架提供程序类型?

我正在尝试在我的机器上安装的TeamCity上运行我的测试。

System.InvalidOperationException

实体框架提供程序类型“ 为” 'ADO.NET提供程序无法加载。确保提供程序程序集可用于正在运行的应用程序。System.Data.Entity.SqlServer.SqlProviderServices,  EntityFramework.SqlServerVersion=6.0.0.0, Culture=neutral,  PublicKeyToken=b77a5c561934e089'System.Data.SqlClient

有关详细信息,请参阅http://go.microsoft.com/fwlink/?LinkId=260882

我没有参考System.Data.Entity任何我在codeplex上建议升级到EF6的项目。

所以,我不知道为什么我会得到这个例外。当我从VS运行测试时,我没有得到任何这样的异常。

我确实尝试将CopyLocal设置为false然后再次设置为true ..但这似乎也不起作用。

更新

我的app.config有以下内容。这会导致一些我不理解的行为吗?

<?xml version="1.0" encoding="utf-8"?><configuration>
  <configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  </configSections>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
  </entityFramework></configuration>

我在teamcity中得到以下stacktrace。

[MSTest] IntegrationTests.CrudTest+QuestionTest.Create[03:59:11][IntegrationTests.CrudTest+QuestionTest.Create] Initialization method IntegrationTests.CrudTest+QuestionTest.Initialize threw exception. System.InvalidOperationException: System.InvalidOperationException: The Entity Framework provider type 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' for the 'System.Data.SqlClient' ADO.NET provider could not be loaded. Make sure the provider assembly is available to the running application. See http://go.microsoft.com/fwlink/?LinkId=260882 for more information..[03:59:11][IntegrationTests.CrudTest+QuestionTest.Create]     at System.Data.Entity.Config.ProviderServicesFactory.GetInstance(String providerTypeName, String providerInvariantName)


繁花如伊
浏览 561回答 3
3回答

四季花海

同样的问题,但我通过Nuget安装了EF 6。另一个可执行文件缺少EntityFramework.SqlServer。我只是将nuget包添加到该项目中。

www说

在尝试了所有其他建议的解决方案并且没有让我的项目工作之后,我终于在这个页面中找到了一些评论:删除BIN-Folder为我做了它也适合我。
打开App,查看更多内容
随时随地看视频慕课网APP