How do I use LINQ to obtain a unique list of properties from a list of objects? October 20, 2022 by Tarik IEnumerable<int> ids = list.Select(x=>x.ID).Distinct();