vote up 5 vote down star
1

I have 2 collections which have an Email property in both collections. I need to get a list of the items in the first list where the Email does not exist in the second list. With SQL I would just use "not in" but I do not know the equivalent in Linq.

How is that done?

So far I have a join, like...

var matches = from item1 in list1
join item2 in list2 on item1.Email equals item2.Email
select new { Email = list1.Email };

But I cannot join since I need the difference and the join would fail. I need some way of using Contains or Exists I believe. I just have not found an example to do that yet.

flag

45% accept rate

6 Answers

vote up 1 vote down check

I don't know if this will help you but..

NorthwindDataContext dc = new NorthwindDataContext();

dc.Log = Console.Out;

var query =

from c in dc.Customers

where !(from o in dc.Orders

        select o.CustomerID)

       .Contains(c.CustomerID)

select c;

foreach (var c in query) Console.WriteLine( c );

from http://programminglinq.com/blogs/marcorusso/archive/2008/01/14/the-not-in-clause-in-linq-to-sql.aspx

link|flag
vote up 0 vote down
var secondEmails = (from item in list2
                    select new { Email = item.Email }
                   ).ToList();

var matches = from item in list1
              where !secondEmails.Contains(item.Email)
              select new {Email = item.Email};
link|flag
vote up 9 vote down

You want the Except operator.

var answer = list1.Except(list2);

Better explanation here: http://blogs.msdn.com/charlie/archive/2008/07/12/the-linq-set-operators.aspx

link|flag
Nice. Never noticed that method before. Thanks. – James Atkinson Oct 8 '08 at 17:12
Charlie does some really amazing articles, thats how I stay up to date. Hope you find it handy someday too. =o) – Echostorm Oct 8 '08 at 17:22
vote up 0 vote down

Example using List of int for simplicity.

List<int> list1 = new List<int>();
// fill data
List<int> list2 = new List<int>();
// fill data

var results = from i in list1
              where !list2.Contains(i)
              select i;

foreach (var result in results)
    Console.WriteLine(result.ToString());
link|flag
vote up 0 vote down

items in the first list where the Email does not exist in the second list.

from item1 in List1
where !(list2.Any(item2 => item2.Email == item1.Email))
select item1;
link|flag
vote up 0 vote down

While Except is part of the answer, it's not the whole answer. By default, Except (like several of the LINQ operators) does a reference comparison on reference types. To compare by values in the objects, you'll have to

  • implement IEquatable<T> in your type, or
  • override Equals and GetHashCode in your type, or
  • pass in an instance of a type implementing IEqualityComparer<T> for your type
link|flag
... if we are talking about LINQ to Objects. If it was LINQ to SQL, the query is translated into SQL statements that run on the database, so this doesn't apply. – Lucas Oct 9 '08 at 21:11

Your Answer

Get an OpenID
or

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