在ADO.NET提供程序的应用程序配置文件中注册的实体框架提供程序类型'Npgsql.NpgsqlServices,Npgsql.EntityFramework6.Npgsql'无法被加载。确保使用了程序集限定名称,并且该程序集可用于正在运行的应用程序。有关更多信息,请参见http://go.microsoft.com/fwlink/?LinkId=260882
使用Microsoft Visual Studio 2017社区版
使用Entity Framework 6.2(通过Nuget安装)
使用Npgsql 4.0.4(通过Nuget安装)
将VSIX用于通过Microsoft Marketplace安装的npsql
尝试使用代码优先EF6 / postgres。 几乎尝试了app.config的每种组合,我在各种帖子中都看到了示例。我显然缺少了一些东西。请帮忙。
<?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>
<system.data>
<system.data>
<DbProviderFactories>
<remove invariant="Npgsql"/>
<add name="Npgsql Data Provider" invariant="Npgsql" description=".Net Data Provider for PostgreSQL" type="Npgsql.NpgsqlFactory, Npgsql, Culture=neutral, PublicKeyToken=5d8b90d52f46fda7"/>
</DbProviderFactories>
</system.data> </system.data>
<connectionStrings>
<add name="CricketConnection" connectionString="server=localhost;Database=CricketGrounds;Username=postgres;Password=postgres"
providerName="Npgsql" />
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<entityFramework>
<providers>
<provider invariantName="Npgsql" type="Npgsql.NpgsqlServices, Npgsql.EntityFramework6.Npgsql" />
</providers>
</entityFramework>
</configuration>
答案 0 :(得分:0)
之所以得到这个,是因为我没有安装EntityFramework6.Npgsql,它(除其他外)向App.Config中添加了东西
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Npgsql" publicKeyToken="5d8b90d52f46fda7" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.4.0" newVersion="4.0.4.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
我仍然有问题,但是现在使用System.Data.SqlClient.SqlClientFactory,但是如果无法解决问题,我将发布另一个问题。