Mono で実行されている .net 4.5 を対象とする MVC3 プロジェクトがあり、失敗しているのは Entity Framework から PostgreSQL への接続だけです。
MVC4、EF6、Postgres を使用して VS 2012 で作業しているほぼ同じプロジェクトがあります。
次のエラーが表示されます。
System.InvalidOperationException Entity Framework プロバイダー タイプ 'Npgsql.NpgsqlFactory, Npgsql' の 'Instance' メンバーは、'System.Data.Entity.Core.Common.DbProviderServices' から継承するオブジェクトを返しませんでした。Entity Framework プロバイダーはこのクラスから拡張する必要があり、'Instance' メンバーはプロバイダーの Singleton インスタンスを返す必要があります。
構成に何か欠けているのでしょうか、それともうまくいきませんか?
<!--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" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
と ...
<entityFramework>
<providers>
<provider invariantName="Npgsql" type="Npgsql.NpgsqlFactory, Npgsql">
</provider>
</providers>
</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>
Mono ASP.net バージョン文字列 ...
Version Information: 3.0.3 (master/39c48d5); ASP.NET Version: 4.0.30319.17020