Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

*Right* outer join in LINQ

Tags:

linq

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?

like image 240
Rap Avatar asked Apr 28 '10 15:04

Rap


1 Answers

After extensive looking, I can find nothing referring to a right outer join. The only syntax available for an outer join is a left outer join.

like image 156
Rap Avatar answered Oct 17 '22 19:10

Rap