2015-09-01 62 views
3

在引用幾乎所有與此問題有關的問題後。我無法找到解決這個問題的辦法。無法讀取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數據庫。 任何幫助表示讚賞。

+0

我看到你有一個連接工廠,但你的配置文件中沒有連接字符串,是你的代碼中的連接字符串? –

+0

連接字符串was there.then我刪除它,並試圖再次添加數據庫。這並沒有發生。 – Neha

回答

0

試試下面這個鏈接

using sqllite with EF

搶的安裝文件,這些文件在wiki中引用不存在於

setup files which should register everything for you

好了一個鏈接,那麼回事細節通過爲.Net註冊DLL並設計一個款待包的設置,所以你應該通過設置並且應該爲你工作

+0

我也試過這個。但我再次看不到sqlite作爲實體模型嚮導中的數據源。 – Neha

+0

你是否安裝了sqllite客戶端? –

+0

你可以指定關於這個sqlclient ...因爲我安裝了SQLite網絡上提到的所有東西。 – Neha

相關問題