Answers for "get distinct list c# linq"

C#
0

c# distinct comparer multiple properties

List<Person> distinctPeople = allPeople
  .GroupBy(p => new {p.PersonId, p.FavoriteColor} )
  .Select(g => g.First())
  .ToList();
Posted by: Guest on April-19-2020
1

c# distinct array of objects by values

var uniquePersons = persons.GroupBy(p => p.Email)
                           .Select(grp => grp.First())
                           .ToArray();
Posted by: Guest on April-06-2020

C# Answers by Framework

Browse Popular Code Answers by Language