比如说我们要从用户表customer和用户订单表order…

2018-06-22 06:12:54来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

var results = from customer in customers
              where customer.State == "WA"
              let custOrders = (from order in orders
                                where customer.ID == order.ID
                                select new { order.Date, order.Amount })
              where custOrders.Count(co => co.Amount >= 10 &&
                                     co.Date >= DateTime.Now.AddMonths(?10)) >= 3
              select new { customer.Name, customer.Age };

下面另附上一条分页的linq语句:
var productList=(from prod in db.Products
where prod.Type="零食" orderby prod.datatime select u).Skip(PageSize*(PageNum-1)).Take(PageSize);

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:可选参数、命名参数、.NET的特殊类型、特性

下一篇:MiniProfiler使用点滴记录-2017年6月23日11:08:23