Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class Items with properties (Id, Name, Code, Price).

The List of Items is populated with duplicated items.

For ex.:

1         Item1       IT00001        $100
2         Item2       IT00002        $200
3         Item3       IT00003        $150
1         Item1       IT00001        $100
3         Item3       IT00003        $150

How to remove the duplicates in the list using linq?

share|improve this question
I have another class as property in the Items Class also – Prasad Oct 22 '09 at 11:54

5 Answers

up vote 90 down vote accepted
var distinctItems = items.Distinct();

To match on only some of the properties, create a custom equality comparer, e.g.:

class DistinctItemComparer : IEqualityComparer<Item> {

    public bool Equals(Item x, Item y) {
        return x.Id == y.Id &&
            x.Name == y.Name &&
            x.Code == y.Code &&
            x.Price == y.Price;
    }

    public int GetHashCode(Item obj) {
        return obj.Id.GetHashCode() ^
            obj.Name.GetHashCode() ^
            obj.Code.GetHashCode() ^
            obj.Price.GetHashCode();
    }
}

Then use it like this:

var distinctItems = items.Distinct(new DistinctItemComparer());
share|improve this answer
1  
i tried this, but not removing duplicates – Prasad Oct 22 '09 at 11:55
Updated with your second requirement. – Christian Hayter Oct 22 '09 at 12:11
Hi Christian , What will be the change in code if i have a List<my_Custom_Class> and List<string>. My custom class has various items in which one is DCN number and list<string> has only DCN number. So I need to check the List<Custom_Class> contains any dcn from List<string>. For example suppose List1 = List<Custom_Class> and List2 = List<String>. If List1 has 2000 items and list2 has 40000 items on which 600 items from List1 exists in List2. So in this case i need 1400 as my output List as list1. So what would be the expression. Thanks in advance – Amit Ranjan Aug 11 '10 at 2:54
Also one more case is here since List1 contains various items , other items values might be different but the DCN must be same. So in my case Distinct failed to give desired out put. – Amit Ranjan Aug 11 '10 at 2:57
perfect solution, many thanks – Kassem Oct 9 '12 at 18:58
var distinctItems = items.GroupBy(x => x.Id).Select(y => y.First());
share|improve this answer
1  
clever, hehe :) – Ion Todirel Dec 7 '10 at 6:23
That really helped me out! :D – Fogh Sep 16 '11 at 15:51
3  
Thanks - was looking to avoid writing a comparer class so I'm glad this works :) – Jen Oct 5 '11 at 4:29
works perfectly. – user1027620 Jan 8 '12 at 11:10
1  
this should be the more correct answer – Sudantha Jun 25 '12 at 6:32
show 1 more comment

If there is something that is throwing off your Distinct query, you might want to look at MoreLinq and use the DistinctBy operator and select distinct objects by id.

var distinct = items.DistinctBy( i => i.Id );
share|improve this answer

Use Distinct() but keep in mind that it uses the default equality comparer to compare values, so if you want anything beyond that you need to implement your own comparer.

Please see http://msdn.microsoft.com/en-us/library/bb348436.aspx for an example.

share|improve this answer

This is how I was able to group by with Linq. Hope it helps.

var result_CloudManagedServices = from n in p2.Events
                     where n.trackName == "Cloud/Managed Services"
                     orderby n.title
                     select n;

 IEnumerable<EventsData> ResDist_CloudManagedServices = result_BusinessProcessManagement.GroupBy(x => x.title).Select(y => y.First());
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.