Hello,
I know this query is working as left join. But more importantly i want to know why is it working as Left Join? How does the query execution flows?
var query = from cust in objNorthwindEntities.Customers
join orders in objNorthwindEntities.Orders on cust equals orders.Customer
into groupedCust
select new
{
custName = cust.ContactName,
orders = groupedCust
};
The query contains cust equals orders.Customer
, then how does it work as left join.
Thanks in advance :)