摘要: 找出不同项 1 var query = List.GroupBy(o => o.id).Select(p => new { p.Key, count = p.Count() }).Where(p => p.count > 1).ToList(); 1 resultMsg = string.Join( 阅读全文
posted @ 2019-01-04 17:28 Aaron_Net 阅读(138) 评论(0) 推荐(0)