对于EF 6和SQLite 1.0.96.0,“找不到实体框架提供程序”

时间:2015-03-18 18:21:10

标签: c# entity-framework sqlite entity-framework-6

我意识到在这个主题上已经有几个类似的问题,但是其中很多都来自SQLite的旧版本,据我所知,它并没有完全支持EF 6。我已经尝试过这些线程的无数建议,要么是做错了,要么是必须改变的。

我正在使用VS 2013,目标是.NET 4.5.1并安装了来自system.data.sqlite.org download page的sqlite-netFx451-setup-bundle-x86-2013-1.0.96.0.exe软件包以及系统来自NuGet Manager的.Data.SQLite EF6包(安装EF6)。

下面是我当前的App.config文件(除了我尝试将Version,Culture和Public键变量添加到该类型之外,它几乎没有变化):

<?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>

如果我执行某些操作,例如尝试从模型I生成数据库,请看以下错误:

  

找不到ADO.NET提供程序的实体框架提供程序   不变名称'System.Data.SQLite.EF6'。确保提供商已在“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。

6 个答案:

答案 0 :(得分:79)

我在App.config

中添加了一行就解决了同样的错误
provider

PS:将<configuration>添加到<entityFramework>&gt; <providers>&gt; blah.requestFocus(); blah.layout();

答案 1 :(得分:11)

这是一个有用的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>

答案 2 :(得分:5)

我终于得到了它的工作

我正在使用: EF 6.1.3 http://www.microsoft.com/en-us/download/details.aspx?id=40762 和 System.Data.SQLite 1.0.96.0 源码-netFx451-设置束-x86-2013-1.0.96.0.exe

我遵循了以下描述: Database first create entity framework 6.1.1 model using system.data.sqlite 1.0.93 (在此描述中安装了一个实体框架的nuget包 - 我也这样做了)

对于app.config文件,我使用了以下修复: https://stackoverflow.com/a/24324212/885349 (由tomexou撰写)

最后,ADO.Net实体数据模型映射器中没有显示SQLite连接器

缺少的链接是\ bin文件夹。 我必须设置&#34;复制本地&#34; =以下dll的真实设置:

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

仅用于完整性 - 通过Nuget和\ bin文件夹添加

  • EntityFramework
  • EntityFramework.SqlServer

显示了SQLite连接......

答案 3 :(得分:3)

尝试这些调整:

<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

答案 4 :(得分:3)

搜索一周之后,我相信这个问题是sqlite团队开发的一个功能。

可在此处找到更多信息 SQLite connection not appearing in Entity Data Model Wizard

编辑: 也许看一些不同的提供商似乎是值得的。 虽然我自己没有对此进行过测试,但http://www.devart.com/dotconnect/提供了一些有前途的替代方案,并说明了EF兼容性。

答案 5 :(得分:0)

enctype="multpart/form-data"