Click here to Skip to main content
15,662,532 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i perform a left join on 2 tables(entities)using LINQ to EF and then pass the result(model) to the view to be displayed. I don't want to build a new model just use the 2 entities.

I need help please!
Posted

1 solution

use This Link:-

http://msdn.microsoft.com/en-us/library/bb896266.aspx[^]


CSS
var query =
from contact in contacts
join order in orders
on contact.ContactID
equals order.Contact.ContactID into contactGroup
select new
{
ContactID = contact.ContactID,
OrderCount = contactGroup.Count(),
Orders = contactGroup
};
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900