LINQ To EF
Posted 成为自己最想成为的那种人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LINQ To EF相关的知识,希望对你有一定的参考价值。
1. 简单查询
var result = from c in db.Customers select c;
2. 条件查询
普通 LINQ 写法:
var result = from c in db.Customers where c.Country == "UK" select c;
Lambda 表达式写法:
var result = db.Customers.Where(c => c.Country == "UK");
3. 排序分页
以上是关于LINQ To EF的主要内容,如果未能解决你的问题,请参考以下文章
不支持 Linq-to-EF DateTime.ToLocalTime
LINQ to Dataset 是 LINQ to EF 的子集还是这两者是独立的?