web-dev-qa-db-ja.com

EF 6およびSQLite 1.0.96.0の「Entity Frameworkプロバイダーが見つかりません」

このトピックにはすでにいくつかの同様の質問がありますが、それらの多くはSQLiteの古いバージョンのものであり、私が知る限りEF 6を完全にサポートしていませんでした。私はこれらのスレッドから数え切れないほどの提案を試みましたが、何か間違ったことをしているか、何かが変更されているに違いありません。

.NET 4.5.1をターゲットにしたVS 2013を使用しており、 system.data.sqlite.orgからsqlite-netFx451-setup-bundle-x86-2013-1.0.96.0.exeパッケージをインストールしましたダウンロードページ 、およびNuGet Manager(EF6をインストールする)からSystem.Data.SQLite EF6パッケージをダウンロードします。

以下は私の現在の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.1" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="mssqllocaldb" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
      <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6, Version=1.0.96.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139" />
    </providers>
  </entityFramework>
  <system.data>
    <DbProviderFactories>
      <remove invariant="System.Data.SQLite.EF6" />
      <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".NET Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6, Version=1.0.96.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139"
      />
    </DbProviderFactories>
  </system.data>
</configuration>

そして、私のpackages.config:

<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="EntityFramework" version="6.1.2" targetFramework="net451" />
  <package id="System.Data.SQLite.EF6" version="1.0.96.0" targetFramework="net451" />
</packages>

モデルからデータベースを生成しようとすると、次のエラーが表示されます。

不変名「System.Data.SQLite.EF6」を持つADO.NETプロバイダーのEntity Frameworkプロバイダーが見つかりませんでした。プロバイダーが「entityFramework」セクションに登録されていることを確認してください...

App.configファイルをいじり、古いスレッドが示唆しているように他のプロバイダーとプロバイダーを追加しようとしましたが、役に立ちませんでした。

この問題を修正するにはどうすればよいですか?どんな助けも大歓迎です!

編集:データベースファーストのアプローチを使用するのに十分なほどうまく機能するようになりました。 App.configファイルの関連部分は次のとおりです。

<providers>
     <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" />
</providers>

<DbProviderFactories>
     <remove invariant="System.Data.SQLite" />
     <remove invariant="System.Data.SQLite.EF6" />
     <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".NET Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6" />
     <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".NET Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
</DbProviderFactories>

EF 6.1.2とSystem.Data.SQLite 1.0.96.0を使用しています。

40
Simon

App.configに1行追加するだけで同じエラーを解決しました

<provider invariantName="System.Data.SQLite" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6"/>

PS:provider<configuration>に追加> <entityFramework>> <providers>

動作する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>
    <providers>
      <provider invariantName="System.Data.SQLite" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6"/>
    </providers>
  </entityFramework>

  <connectionStrings>
    <!-- use AppDomain.SetData to set the DataDirectory -->
    <add name="MapDbConnectionStr" connectionString="Data Source=|DataDirectory|MapDb.sqlite" providerName="System.Data.SQLite" />
  </connectionStrings>

  <system.data>
    <DbProviderFactories>
      <remove invariant="System.Data.SQLite.EF6" />
      <add name="SQLite Data Provider" invariant="System.Data.SQLite" description="Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
    </DbProviderFactories>
  </system.data>



</configuration>
11
Paul

やっとうまくいきました

私は使用しています:EF 6.1.3 http://www.Microsoft.com/en-us/download/details.aspx?id=40762 およびSystem.Data.SQLite 1.0.96.0 sqlite- netFx451-setup-bundle-x86-2013-1.0.96.0.exe

データベースはまずsystem.data.sqlite 1.0.93を使用してエンティティフレームワーク6.1.1モデルを作成します (この説明では、エンティティフレームワークのnugetパッケージがインストールされています-iもそれを実行しました)

App.configファイルについては、これらの修正を使用しました: https://stackoverflow.com/a/24324212/885349 (tomexouによって書かれました)

最後に、SQLite ConnectorはADO.Net Entity Data Model Mapperに表示されませんでした

見つからないリンクは\ binフォルダーでした。次のdllに対して「ローカルコピー」= true設定を設定する必要がありました。

  • SQLite.Designer
  • System.Data.SQLite
  • System.Data.SQLite.EF6
  • System.Data.SQLite.Linq

完全を期すために-Nugetおよび\ binフォルダーに追加

  • EntityFramework
  • EntityFramework.SqlServer

そして、SQLite接続が表示されました...

5
CreateAHero

1週間検索した後、この問題はsqliteチームによる開発の機能であると考えています。

詳細については、こちらをご覧ください SQLite接続がエンティティデータモデルウィザードに表示されない

編集:たぶん、いくつかの異なるプロバイダーを調べることは価値があると思われるかもしれません。私自身はこれをテストしていませんが、 http://www.devart.com/dotconnect/ はいくつかの有望な選択肢を提供し、EFの互換性を述べています。

3
ImP

これらの調整を試してください:

<providers>
  ...
  <provider invariantName="System.Data.SQLite" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6"/>
</providers>

<system.data>
    <DbProviderFactories>
        <remove invariant="System.Data.SQLite.EF6" />
        <add name="SQLite Data Provider" invariant="System.Data.SQLite" description="Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
    </DbProviderFactories>
</system.data>

Entity Framework 6 + SQLite を参照してください

3
Steve Greene
public class EFConfiguration : DbConfiguration
{
    public EFConfiguration()
    {
        SetDefaultConnectionFactory(new LocalDbConnectionFactory("v.11"));

        //HACK
        var EF6ProviderServicesType = typeof(System.Data.SQLite.EF6.SQLiteProviderFactory).Assembly.DefinedTypes.First(x => x.Name == "SQLiteProviderServices");
        var EF6ProviderServices = (DbProviderServices)Activator.CreateInstance(EF6ProviderServicesType);
        SetProviderServices("System.Data.SQLite.EF6", EF6ProviderServices);
        SetProviderServices("System.Data.SqlClient", System.Data.Entity.SqlServer.SqlProviderServices.Instance);
        SetProviderFactory("System.Data.SQLite.EF6", System.Data.SQLite.EF6.SQLiteProviderFactory.Instance);
        SetProviderFactory("System.Data.SQLite", System.Data.SQLite.SQLiteFactory.Instance);
    }
}
0
user1770543