标签:bsp group mobile 方式 order BYD lis HERE where
这个场景适合所有要查找相同字符串的个数并返回一个序列
//取出前十个经常联系的手机号(即:计算重复手机个数最多的前十个) var topTenMobile = mlist.GroupBy(m => m.Mobile).Where(m => m.Count() > 1).Select(i=>new { Mobile=i.Key,Count=i.Count() }).OrderByDescending(p=>p.Count).Take(10).ToList();
标签:bsp group mobile 方式 order BYD lis HERE where
原文地址:https://www.cnblogs.com/firstcsharp/p/9869911.html