我想在C#應用程序中使用實體框架代碼優先在PostgreSQL服務器上創建數據庫。我已經爲EF下載了Npgsql,並試圖以互聯網上提供的不同方式更改我的App.config文件,但沒有任何作用。使用EntityFramework 6(C#)連接到PostgreSQL數據庫
這是我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.2" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
<provider invariantName="Npgsql" type="Npgsql.NpgsqlServices, EntityFramework6.Npgsql" />
</providers>
</entityFramework>
<connectionStrings>
<add name="SqlServer" connectionString="Data Source=localhost;Initial Catalog=MyDB;Integrated Security=true" providerName="System.Data.SqlClient" />
<add name="PostgreSql" connectionString="Data Source=localhost;Initial Catalog=MyDB;Integrated Security=true;User Id=postgre;Password=password;" providerName="Npgsql" />
</connectionStrings>
</configuration>
我想補充一點,SqlServer
作品。我會很感激的幫助。
如果您在應用程序中需要兩個提供程序,則需要告知EF爲您的上下文使用哪一個提供程序。否則,刪除SqlServer條目並將默認連接工廠更改爲Npgsql提供的連接工廠。 – Spivonious
在Context類的構造函數中,我使用了base(「PostgreSql」)。應該如何默認樣子? – Niko
這應該夠了。使用上下文時是否出現錯誤? – Spivonious