我将支持EF 6添加到我的sql生成器for PostgreSQL:PostgreSQL Migration Generator
我已经创建了一个测试项目来尝试它,但是当我创建一个新连接return new NpgsqlConnection();
时,它会向我抛出这个异常:
An exception of type 'System.NotSupportedException' occurred in EntityFramework.dll but was not handled in user code
Additional information: Unable to determine the provider name for provider factory of type 'Npgsql.NpgsqlFactory'. Make sure that the ADO.NET provider is installed or registered in the application config.
按照Npgsql官方网站上的说明,我使用这个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>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
<provider invariantName="Npgsql" type="Npgsql.NpgsqlServices, Npgsql.EntityFramework"></provider>
</providers>
<defaultConnectionFactory type="Npgsql.NpgsqlConnectionFactory, Npgsql" />
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="Npgsql" />
<add name="Npgsql Data Provider" invariant="Npgsql" support="FF" description=".Net Framework Data Provider for Postgresql" type="Npgsql.NpgsqlFactory, Npgsql" />
</DbProviderFactories>
</system.data>
</configuration>
我不明白为什么会引发此异常。我尝试了很多配置,但任何人都可以使用。
答案 0 :(得分:18)
解决方案资源管理器
答案 1 :(得分:0)
对于Global.asax中的MVC应用程序,最后在方法Application_Start()中放入行:
Database.SetInitializer(空);
这解决了同样的问题。
答案 2 :(得分:0)
安装Entity Framework 6 Tools可以解决您的问题。
干杯。
答案 3 :(得分:0)
如果您首先使用代码并使用迁移生成数据库
,请删除__MigrationHistory表