摘要:
原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 阅读全文