我已经针对以前版本的类似问题尝试了一些答案,但似乎都没有效果:
什么有用:从数据库更新(在Sqlite Studio中更改之后)。
什么不起作用:从更新的模型生成数据库。
错误消息:找不到具有不变名称“System.Data.Sqlite.EF6”的ADO.NET提供程序的实体框架提供程序。
我正在使用Visual Studio 2015.我已经安装了 sqlite-netFx46-setup-bundle-x86-2015-1.0.105.2.exe (对于可视化设计器),然后添加了像这样的NuGet包:
<package id="EntityFramework" version="6.1.3" targetFramework="net45" />
<package id="System.Data.SQLite" version="1.0.105.2" targetFramework="net45" />
<package id="System.Data.SQLite.Core" version="1.0.105.2" targetFramework="net45" />
<package id="System.Data.SQLite.EF6" version="1.0.105.2" targetFramework="net45" />
<package id="System.Data.SQLite.Linq" version="1.0.105.2" targetFramework="net45" />
我的App.config:
<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>
<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" />
</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" />
<remove invariant="System.Data.SQLite" />
<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>
</system.data>
<connectionStrings>
<add name="data03Entities" connectionString="metadata=res://*/Data.Data03.csdl|res://*/Data.Data03.ssdl|res://*/Data.Data03.msl;provider=System.Data.SQLite.EF6;provider connection string='data source="C:\Users\Frederik\Documents\Data\data03.db"'" providerName="System.Data.EntityClient" />
</connectionStrings>
</configuration>
答案 0 :(得分:0)
确保主项目(启动项目)配置文件中存在DbProviderFactories
和entityFramework
部分。您可能在单独的项目中有数据访问权限。
答案 1 :(得分:0)
在您的配置文件中:
<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" />
</providers>
</entityFramework>
您需要添加提供商节点
<provider invariantName="System.Data.SQLite" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" />
许多开发人员报告说它也是必需的。我也经历过。
还要确保您的连接字符串引用的是提供程序“ System.Data.SQLite”而不是“ System.Data.SQLite.EF6”