I have a table with userids of people who should be emailed. When they're emailed a record is added to another table that they were notified. I need to write a linq query that returns any records in the first table that aren't in notifed table. Anyone know how to do this? Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
How about an outer join where the results from the second table are null? This is from http://www.hookedonlinq.com/OuterJoinSample.ashx with a minor change to only include those records without matching records:
|
|||
|
|
|
In pseudo code, this is what you should do(left join) :
this will render a resulting list of values, which are 6 and 7. You should look at the values here as if they were PK and FK in your tables. |
|||
|
|