*Right* outer join in LINQ

Posted by Rap on Stack Overflow See other posts from Stack Overflow or by Rap
Published on 2010-04-28T15:20:31Z Indexed on 2010/04/28 15:23 UTC
Read the original article Hit count: 268

Filed under:

Is it safe to say that there is no such thing as a right outer join in LINQ?

I know to effectively create one, you'd just swap the tables in a left outer join. But can you apply the DefaultIfEmpty() method to the table on the left side of the equijoin to make it a right outer join?

© Stack Overflow or respective owner

Related posts about LINQ