在这个list里,如果有两条满足item1不相同,item2和item3都相同,那么我就执行其他的操作,请教下用什么方法可以找出满足条件的两条数据
1 个解决方案
#1
list.GroupBy(x => new { x.Item2, x.Item3 }).Where(x => x.Count() >= 2).Select(x => x.Key)
#1
list.GroupBy(x => new { x.Item2, x.Item3 }).Where(x => x.Count() >= 2).Select(x => x.Key)