你如何使Entity框架6 + Sqlite +代码首先工作?

时间:2014-02-14 01:37:27

标签: entity-framework sqlite

我正在尝试创建一个简单的项目来探索实体框架6代码如何首先使用sqlite数据库提供程序工作,但当我完成我的应用程序时,我收到错误:

  

“实体框架提供程序类型   'System.Data.SQLite.SQLiteProviderServices,System.Data.SQLite.Linq,   Version = 1.0.91.0,Culture = neutral,PublicKeyToken = db937bc2d44ff139'   在ADO.NET提供程序的应用程序配置文件中注册   无法加载不变名称'System.Data.SQLite'。使   确保使用了程序集限定名称并且程序集是   可用于正在运行的应用程序看到   http://go.microsoft.com/fwlink/?LinkId=260882了解更多信息。“

我认为此错误与app.config文件有关。 有没有人有实体框架6 + Sqlite 1.0.91的工作app.config文件?

这些是我的配置文件内容:

    <?xml version="1.0"?>
<configuration>
  <configSections>
    <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 -->
  </configSections>

  <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="System.Data.SQLite" type="System.Data.SQLite.SQLiteProviderServices, System.Data.SQLite.Linq, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139"/>
    </providers>
  </entityFramework>
  <connectionStrings>
    <add name="BloggingContext" connectionString="Data Source=.\animals.sqlite" providerName="System.Data.SQLite"/>
  </connectionStrings>
  <system.data>
    <DbProviderFactories>
      <remove invariant="System.Data.SQLite"/>
      <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>


<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>

2 个答案:

答案 0 :(得分:2)

首先从提供者部分删除以下行:

<provider invariantName="System.Data.SQLite" type="System.Data.SQLite.SQLiteProviderServices, System.Data.SQLite.Linq, Version=1.0.91.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139"/>

并添加以下行而不是:

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

了解更多信息:Problems using Entity Framework 6 and SQLite

答案 1 :(得分:1)

这个问题有一篇很好的文章: http://hintdesk.com/sqlite-with-entity-framework-code-first-and-migration/

阅读完之后,我的结论是:&#34;不,如果你想先EF +代码,请不要使用sqlite&#34;。即使它已弃用,也请使用SQL CE。