C# Linq判断集合中的某个字段是否有重复
//orderList中的SellerID是否有重复 bool sellerIDIsRepeat = orderList.GroupBy(i => i.SellerID).Where(g => g.Count() > 1).Count() >= 1;
搜索
复制