//Linq //var result = from p in personList
// group p by p.Id
// into grouped
// select new { Id = grouped.Key, Count = grouped.Count() }
// into temp
// orderby temp.Count descending
// select temp; //Lambda var result =
personList.GroupBy(g => g.Id)
.Select(s => new { Id = s.Key, Count = s.Count() })
.OrderByDescending(o => o.Count);
相关文章
- 01-14List集合使用Linq获取返回值的相关操作
- 01-14LINQ 的查询_联表、分组、排序
- 01-14LINQ系列:LINQ to DataSet的DataTable操作
- 01-14使用Linq 来解决Datatable 去除数据重复
- 01-14一些Linq方法,come on !!
- 01-14Linq in条件查询
- 01-14linq 多条件查询
- 01-14转 --简单解决Linq多条件组合问题
- 01-14Linq查询条件里有可空字段比较时报错variable '<>h__TransparentIdentifier2' of type referenced from scope '', but it is not defined
- 01-14Linq 实例