我有一个项目,我使用nuget来安装SQLite 1.0.93.0。这将安装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>
<system.data>
<DbProviderFactories>
<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" />-->
<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>
<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>
</configuration>
然后我创建一个新的连接到我的sqlite数据库,我尝试创建一个edmx,但我收到一个错误,说我的项目引用了最新版本的EF,但没有这个连接的兼容提供程序到数据库。如果我有一个兼容的提供程序,我必须重新编译该项目,或者如果我没有兼容的提供程序,我必须安装它并重新编译项目。
我尝试重新编译项目,但问题仍然存在。我不知道如何安装兼容的提供商。
如果在项目的引用中我删除了对EntityFramework.dll和EntityFramework.SQLserver.dll的引用,那么在向导中创建edmx a可以选择在EF6.x和EF5之间进行选择。只启用了选择EF5的选项,所以在这种情况下我使用EF5而不是EF6。
如何将EF6与SQLite一起使用?
感谢。
答案 0 :(得分:1)
请查看我的答案是否适合您(请务必观看视频):Database first create entity framework 6.1.1 model using system.data.sqlite 1.0.93