在引用幾乎所有與此問題有關的問題後。我無法找到解決這個問題的辦法。無法讀取sqlite數據庫,在visual studio 2013中使用實體框架
我遵循了上述所有步驟。從sqlite.org
1)下載包
2)從的NuGet
安裝軟件包仍然SQLite不出現在實體模型數據嚮導源列表。
我的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="v11.0" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SQLite" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.Linq, Version=1.0.98.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SQLite" />
<remove invariant="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" />
<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>
我已經試過幾乎所有的東西,但未能獲得連接使用實體框架,SQLite和再讀取數據庫所需的基本步驟。
我已經創建了數據庫使用數據庫瀏覽器的sqlite,它可以通過簡單的ADO.NET方法訪問。
一旦sqlite顯示在數據源下,但然後。提供者錯誤在那裏。 如
無實體框架 - 供應商 - 發現 - 換了,ADO-NET
是否有人可以幫助我的一整套措施,從建立環境直到表演開始在Visual Studio 2013,.NET 4.5.1,wpf,mvvm中運行sqlite數據庫。 任何幫助表示讚賞。
我看到你有一個連接工廠,但你的配置文件中沒有連接字符串,是你的代碼中的連接字符串? –
連接字符串was there.then我刪除它,並試圖再次添加數據庫。這並沒有發生。 – Neha