摘要:
原SQL:select avg(degree) from score where cno like '3%' group by Cno having count(*)>=5Linq:(from s in Scoreswhere s.CNO.StartsWith("3")group s by s.CNOinto ccorderby cc.Count() >= 5....如何写?linq to sql0from s in Scoreswhere s.CNO.StartsWith("3")group s by s.CNOinto c 阅读全文
posted @ 2012-03-09 16:55
.net 流氓
阅读(936)
评论(0)
推荐(0)