Domanda

List
I need to filter this list.
I just want to have those person that have the same SalId and those must be at least two.

How do I do it?

È stato utile?

Soluzione

var dupSalIdPersons = persons
  .GroupBy(p => p.SalId)
  .Where(g => g.Count() >= 2)
  .SelectMany(g =>  g);
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top