SQL查询:
select ApplicationNumber,pri_indicator,count(*) from customer
group by ApplicationNumber,pri_indicator
如何在LINQ中执行此操作?
我看到使用一个简单的组来计算单个字段的大量结果,但似乎找不到或计算出如何做多个字段。
答案 0 :(得分:9)
只需:
var query = from customer in db.Customers
group customer by
new { customer.ApplicationNumber, customer.PriIndicator }
into grouped
select new { grouped.Key.ApplicationNumber,
grouped.Key.PriIndicator,
Count = grouped.Count() };
我认为应该有用。