Linq Sql
Posted 连先森
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linq Sql相关的知识,希望对你有一定的参考价值。
1.日期比较
var query = from order in dbContext.OrderTBs
where subProxyIDs.Contains(order.ProxyID)
&& firstDayOfPreviousMonth <= EntityFunctions.TruncateTime(order.FinishTime)
&& lastDayOfPrdviousMonth >= EntityFunctions.TruncateTime(order.FinishTime)
&& order.Status==(int)OrderStatus.Finished
select order
;
2.Group By
var query= from order in queryOrderList
group order by order.ProxyID
into g
where g.Sum(u => u.Num) >= 5
select g.Key
;
等价于
select t2.ProxyID from (
select sum(Num) num,t.ProxyID from OrderTBs t GROUP BY t.ProxyID
) t2
where t2.num>5
3.Group By having
待补充
以上是关于Linq Sql的主要内容,如果未能解决你的问题,请参考以下文章
sqllinq和lambda查询语句比较inner join和group by组合使用及匿名类型的处理