資源簡介
讓EF支持 sqlite數據庫 源碼下載
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Data.Entity;
using?System.Data.Linq;
using?System.Linq;
using?System.Text;
namespace?SqliteLinqTest
{
????class?Program
????{
????????static?void?Main(string[]?args)
????????{
????????????NorthwindContext?context?=?new?NorthwindContext();
????????????var?empList?=?context.Employees.OrderBy(c?=>?c.FirstName).ToList();
????????????Console.WriteLine(empList.Count);
????????????Console.ReadLine();
????????}
????}
????public?class?NorthwindContext?:?DbContext
????{
????????public?DbSet?Employees?{?get;?set;?}
????}
????public?class?Employee
????{
????????public?int?EmployeeID?{?get;?set;?}
????????public?string?FirstName?{?get;?set;?}
????????public?string?LastName?{?get;?set;?}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2014-04-01?11:36??SqliteLinqTest\
?????目錄???????????0??2014-04-01?11:36??SqliteLinqTest\.nuget\
?????文件?????????169??2014-04-01?11:36??SqliteLinqTest\.nuget\NuGet.Config
?????文件?????1655808??2014-04-01?11:36??SqliteLinqTest\.nuget\NuGet.exe
?????文件????????7540??2014-04-01?11:36??SqliteLinqTest\.nuget\NuGet.targets
?????目錄???????????0??2014-04-01?13:33??SqliteLinqTest\SqliteLinqTest\
?????文件????????1254??2014-04-01?13:33??SqliteLinqTest\SqliteLinqTest.sln
?????文件???????59392??2014-04-01?13:42??SqliteLinqTest\SqliteLinqTest.v11.suo
?????文件????????1336??2014-04-01?11:31??SqliteLinqTest\SqliteLinqTest\App.config
?????文件??????594944??2014-04-01?11:05??SqliteLinqTest\SqliteLinqTest\Northwind.sl3
?????文件?????????484??2014-04-01?11:09??SqliteLinqTest\SqliteLinqTest\packages.config
?????文件?????????804??2014-04-01?13:40??SqliteLinqTest\SqliteLinqTest\Program.cs
?????目錄???????????0??2014-04-01?09:56??SqliteLinqTest\SqliteLinqTest\Properties\
?????文件????????1366??2014-04-01?09:56??SqliteLinqTest\SqliteLinqTest\Properties\AssemblyInfo.cs
?????文件????????4622??2014-04-01?11:36??SqliteLinqTest\SqliteLinqTest\SqliteLinqTest.csproj
- 上一篇:企業ERP系統(附數據庫以及文檔)
- 下一篇:web打印控件(lodop)樣例
評論
共有 條評論