Hi, Trying something like dim lst = From c in SomeCollectionWithDuplicates _ Select New CustomerInfo with {.ID = c.CustomerID, .Name = c.CompanyName} _ Distinct The problem is that I get duplicates. I overrode Equals on CustomerInfo but it doesn't seem to work. How do I do it? Thanks, Cosmin
Read More...