我意识到关于这个主题已经有几个类似的问题,但其中许多来自旧版本的 SQLite,据我所知,它并不完全支持 EF 6。我已经从这些线程中尝试了无数建议,要么做错了什么,要么必须改变某些东西。
我正在使用 VS 2013,目标为 .NET 4.5.1,并从 system.data.sqlite.org 下载页面安装了 sqlite-netFx451-setup-bundle-x86-2013-1.0.96.0.exe 包,作为以及来自 NuGet 管理器(安装 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>
如果我尝试从模型生成数据库,我会看到以下错误:
没有为 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.
我只在 App.config 中添加一行就解决了同样的错误
<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>
我终于明白了
我正在使用: 英孚 6.1.3 http://www.microsoft.com/en-us/download/details.aspx?id=40762 和 系统.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 包——我也这样做了)
对于 app.config 文件,我使用了这些修复: https://stackoverflow.com/a/24324212/885349 (作者:tomexou)
最后 SQLite 连接器没有显示在 ADO.Net 实体数据模型映射器中
缺少的链接是 in 文件夹。 我必须为以下 dll 设置“Copy Local”= true 设置:
只为完整性 - 通过 Nuget 添加,也在文件夹中
并且显示了 SQLite 连接...
尝试这些调整:
<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>
搜索了一个星期后,我相信这个问题是 sqlite 团队开发的一个特性。
更多信息可以在这里找到 SQLite 连接未出现在实体数据模型向导中
编辑: 也许研究一些不同的供应商似乎是值得的。 虽然我自己没有测试过,http://www.devart.com/dotconnect/ 提供了一些有前途的替代方案并声明了 EF 兼容性。
所有建议的解决方案都不适合我。当我尝试运行 Add-Migration SampleMigration
或
Update-Database
.如果这可能会帮助其他人遇到同样的问题,我想分享我们当前的解决方案。
我对 EF 了解不多,但一位同事发现了这种解决方法,可以让 VS 识别类型并将其包含在构建管道中。
// this is required for migrations to work, VS complains about missing sql providers
var x = typeof(System.Data.Entity.SqlServer.SqlProviderServices);