Answers for "what is the equivalent of distinct in linq"

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

linq distinct

var uniquePeople = from p in people
                   group p by new {p.ID} //or group by new {p.ID, p.Name, p.Whatever}
                   into mygroup
                   select mygroup.FirstOrDefault();
Posted by: Guest on January-11-2021

Code answers related to "what is the equivalent of distinct in linq"

C# Answers by Framework

Browse Popular Code Answers by Language