C# Linq判断集合中的某个字段是否有重复

C# Linq判断集合中的某个字段是否有重复

 

//orderList中的SellerID是否有重复
            bool sellerIDIsRepeat = orderList.GroupBy(i => i.SellerID).Where(g => g.Count() > 1).Count() >= 1;

 

 

posted on 2022-10-28 17:54  Jankie1122  阅读(152)  评论(0编辑  收藏  举报