Questions tagged «teamcity-7.1»

30
实体框架提供程序类型无法加载?
我试图在当前安装在计算机上的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] …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.