• 大小: 0.69M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-25
  • 语言: C#
  • 标签: SQLite  数据库  EF  

资源简介

让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

评论

共有 条评论