2017-09-03 94 views
0

我曾嘗試對以前版本的類似問題的一些答案,但沒有一個似乎工作:「沒有實體框架提供發現」爲EF 6和SQLite 1.0.105.2

  • 添加第三個供應商(SQLite的)到App.config。
  • 將連接字符串提供程序從Sqlite.EF56更改爲Sqlite。

什麼工作:從數據庫更新(在Sqlite Studio更改後)。

什麼不起作用:從更新的模型生成數據庫。

錯誤消息:找不到具有不變名稱「System.Data.Sqlite.EF6」的ADO.NET提供程序的實體框架提供程序。

我使用Visual Studio 2015年我已經安裝了的sqlite-netFx46-設置束-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=&quot;C:\Users\Frederik\Documents\Data\data03.db&quot;'" providerName="System.Data.EntityClient" /> 
    </connectionStrings> 
</configuration> 
+0

嘗試將您的項目編譯爲x86而不是AnyCPU – Isma

+0

您是否看過https://github.com/ErikEJ/SqlCeToolbox/wiki/EF6-workflow-with-SQLite-DDEX-provider? – ErikEJ

+0

@Isma已經是這樣了 – FDM

回答

0

確保DbProviderFactoriesentityFramework段都存在於你的主項目(啓動項目)的配置文件。您可能在單獨的項目中訪問數據。