Search This Blog

Wednesday, January 12, 2011

linq to sql - query to find items without children

Programmer Question

hi there,



i am trying to write a linq query that doesn't fire a million child queries.



what i want to do is something like this in sql



select incoming.id, incoming.message, outgoing.message
from incoming
left join outgoing on incoming.id = outgoing.originalMessageId
where outgoing.message is not null


so basically i am doing the left join just do i can find the objects that don't have children.



is there a way to do this, AND return a typed bunch of the "incoming" items...?



sounds simple, and i've tried a few different approaches but i think i'm suffering from lack of sleep so my brain isn't making it happen :(



thanks in advance
Doug



Find the answer here

No comments:

Post a Comment

Related Posts with Thumbnails