资源简介
Entity Framework 6 连接 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
相关资源
- GDAL读取Shapefile并将Shape转换成WKT
- 旅游管理系统C#版数据库sql server
- SNS源代码,社区系统,基于.net3.5+sq
- C#最全基类源码包括ASP.NET类库、读取
- C# EF6连接、操作Mysql教程和增删改查
- 基于ASP.NET医院在线挂号系统源码
- 仓库管理系统源程序(C#+sql)
- C# 进销存管理系统,自己根据需求写
- 数据库课设:KTV点歌系统C# WinForm+Sq
- C#WinForm人事管理系统开发实录
- C#+SQL学生成绩管理系统
- WinForm窗体程序中使用CefSharp获取加载
- VUE+AXOIS+ASP.NETMVC+EF+SQLServer架构的Demo
-
C#将数据库数据生成xm
l文件 - 信息管理系统 c#+ sql server
- ASP.NET+SQL Server 数据库开发与 光盘
- ASP.NET购物网站全部资源.zip
- CefSharp.WinForms 支援MP4 Cef 71.0.1.0
- Winform运用CefSharp简单样例
- VS中NuGet包离线安装CefSharp.WinForms.49.
- c#超市收银和货物管理系统
- Asp.Net MVC4+EF6 Code First 权限管理系统
- 酒店管理程序.zip
- C#+SQL2005图书管理系统
- C#语言实现操作SQLite数据库完成基本的
- S1结业考试KTV项目使用C#配合数据库完
- asp.net+sql博客管理系统
- SQL Server数据全同步及价值分析[终结版
- C#访问SQL显示到DataGridView,同时根据
- 图书管理系统c#+sql server2005
评论
共有 条评论