獲取Sqlite
1.可以用NuGet程序包來獲取,它也會自動下載EF6
2.在Sqlite官網上下載對應的版本:http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki
注意這里面每個.net framework都有兩個版本,一個帶有bundle字眼,一個沒有。一個安裝的DLL里面包含SQLite.Interop.dll,而另一個沒有。如果你運行代碼的時候報
“無法加載SQLite.Interop.dll”的錯誤,則將安裝文件中的SQLite.Interop.dll拷貝到Bin文件中即可。或是在NuGet下載的packages\System.Data.SQLite.Core.1.0.94.0\build中也有對應的程序。
示例代碼
Model.cs
public class Person { public Int64 Id { get; set; } //注意要用Int64 public string FirstName { get; set; } public string LastName { get; set; } } public class MyContext : DbContext { public DbSet<Person> Persons { get; set; } public MyContext() : base("SqliteTest") { } }
Program.cs
static void Main(string[] args) { MyContext context = new MyContext(); var empList = context.Persons.OrderBy(c => c.FirstName).ToList(); Console.WriteLine(empList.Count); Person people = new Person() { FirstName = "Hello", LastName = "World" }; context.Persons.Add(people); context.SaveChanges(); Console.ReadLine(); }
示例代碼很簡單,就是用EF對Person表進行新增與查看。
配置config文件
如果你是用NuGet獲取Sqlite,會自動在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> <connectionStrings> <add name="SqliteTest" connectionString="data source=SqliteTest.db" providerName="System.Data.SQLite.EF6" /> </connectionStrings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <system.data> <DbProviderFactories> <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" /> <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.LocalDbConnectionFactory, EntityFramework"> <parameters> <parameter value="v11.0" /> </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> </configuration>
其中數據連接串是:
<add name="SqliteTest" connectionString="data source=SqliteTest.db" providerName="System.Data.SQLite.EF6" />
注意提供程序集是System.Data.SQLite.EF6。
但是這個配仍然是錯誤的。
如果此時運行程序,會報錯:
Unable to determine the provider name for provider factory of type 'System.Data.SQLite.SQLiteFactory'. Make sure that the ADO.NET provider is installed or registered in the application config.
或中文錯誤信息:
未找到具有固定名稱“System.Data.SQLite”的 ADO.NET 提供程序的實體框架提供程序。請確保在應用程序配置文件的“entityFramework”節中注冊了該提供程序。
意思是EF沒有找到提供System.Data.SQLite.SQLiteFactory的dll,我們看看現在config中的entityFramework節點:
<entityFramework> <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> <parameters> <parameter value="v11.0" /> </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.SQLite.EF6與System.Data.SqlClient,確實沒有名稱為System.Data.SQLite的提供程序。這里我一直不明白為什么sqlite會去找名稱為System.Data.SQLite的提供程序,因為我們在連接串中配置的provider也是System.Data.SQLite.EF6。
那我們就在EF的配置節點中增加一個名為System.Data.SQLite的provider,但type仍然是System.Data.SQLite.EF6。最終的配置如圖:
紅色部分是配置有變化的地方。
這里再運行程序就可以了。
注意:
1.連接串的配置。
數據連接串可以指定絕對地址,也可以指定相對地址。像我的data source=SqliteTest.db,則SqliteTest.db要在Bin文件夾中,如果是web程序可以通過Data Source=|DataDirectory|\SqliteTest.db來配置在App_Data文件平中。
2.如果沒有指定數據庫中的表文件名,EF生成的SQL表都是用復數表示。就像我的程序中實體名是Person,但EF去查找的表名會是People。所以在數據庫中定義的表名是People。
3.不支持CodeFirst模式,您需要自己先設計好Sqlite的表結構。
示例代碼(packages文件太大,所以刪除了):SqliteLinqTest.zip
文章列表