Answers for "c# linq distinct property value"

C#
2

how to use distinct in linq query in c#

var distValues = objList.Select(o=>o.typeId).Distinct().ToList();
Posted by: Guest on February-04-2021
0

c# linq unique by property

List<Person> distinctPeople = allPeople
   .GroupBy(p => p.PersonId)
   .Select(g => g.FirstOrDefault())
   .ToList();
Posted by: Guest on November-19-2021

C# Answers by Framework

Browse Popular Code Answers by Language