SQLite连接未出现在实体数据模型向导中

时间:2015-03-26 22:01:36

标签: c# database entity-framework sqlite

我做了什么来得到我的位置: 我使用GAC和VS2012选项从http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki安装了程序集。

我现在可以连接到现有的SQLite数据库,或建立连接并创建一个新的SQLite数据库文件。

此连接将显示在我的服务器资源管理器中,并且工作正常。 我可以从资源管理器中查看此数据库并更改表等。

但是,当我尝试添加新的 ADO.NET实体数据模型时,这个已建立的连接将不会出现在可用的数据连接中。 即使我继续建立新连接, System.Data.SQLite数据库文件选项也不在选项列表中。

我尝试将实体包与NuGet单独安装或与SQLite包一起安装。我已经尝试过不安装它们或只将Entity模型与前面提到的程序集结合使用,但是SQLite的选项不会出现。

用Google搜索并溢出这段令人沮丧的时间后,发现只有少数几个人出现与我相同的问题,但没有适合我的解决方案,我来找你帮忙。

经过我所有的努力,我怀疑它归结为我的 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" />
  </startup>
  <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.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" />
    </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" />
    </DbProviderFactories>
  </system.data>
</configuration>

类似的问题:

Database first create entity framework 6.1.1 model using system.data.sqlite 1.0.93

http://sqlite.1065341.n5.nabble.com/Provider-not-showing-up-in-Net-Model-import-wizard-td75306.html

我使用了vs2012 .NET 4.5,SQLite版本1.0.96.0,实体6.1.3

我希望有人能够帮助我。

1 个答案:

答案 0 :(得分:9)

安装Entity Framework 6.1.3工具 - 从这里下载:http://www.microsoft.com/en-us/download/details.aspx?id=40762