当前位置:编程学习 > C#/ASP.NET >>

linq sum的问题

select sum(a),sum(b),sum(c) from tab where year=2013 and month=4

转换成linq怎么写  ,最好是lamda语法 --------------------编程问答--------------------
var tmp=db.tab.Where(x=>x.year==2013 && x.month==4); 	

var S = new {X=this.tmp.Sum(x=>x.a),Y=this.tmp.Sum(x=>x.b),Z=this.tmp.Sum(x=>x.c)};
--------------------编程问答-------------------- 除
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,