You can use the Distinct method with LINQ queries. Like this:
var query = (from p in Customers
select p).Distinct();
Sincerely,
Malcolm Sheridan
Microsoft Certified Solution Developer
Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as
Answer" if a marked post does not actually answer your question.
