EF6alphaとSQLite1.0.66.0を使おうとしています
私の.configファイル:
<connectionStrings>
<add connectionString="data source=:memory:;" name="TestDbContext" providerName="System.Data.SQLite" />
</connectionStrings>
<entityFramework>
<providers>
<provider invariantName="System.Data.SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.66.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
</providers>
</entityFramework>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SQLite"/>
<add name="SQLite Data Provider" invariant="System.Data.SQLite"
description=".Net Framework Data Provider for SQLite"
type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, Version=1.0.66.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
</DbProviderFactories>
</system.data>
私が走るとき
using (var dbContext = new TestDbContext())
{
if (dbContext.Database.Exists())
{
dbContext.Database.Delete();
}
dbContext.Database.Create();
}
エラーが発生します:
System.InvalidOperationException:System.InvalidOperationException:エンティティフレームワークプロバイダータイプの「インスタンス」メンバー「System.Data.SQLite.SQLiteFactory、System.Data.SQLite、Version = 1.0.66.0、Culture = neutral、PublicKeyToken=db937bc2d44ff139」はしませんでした'System.Data.Entity.Core.Common.DbProviderServices'から継承するオブジェクトを返します。Entity Frameworkプロバイダーはこのクラスから拡張する必要があり、「Instance」メンバーはプロバイダーのシングルトンインスタンスを返す必要があります。
私は何が間違っているのですか?