Answer Posted / Priyanka Tiwari
To perform a LEFT JOIN using Entity Framework, you can use the Include() method and specify the relationship between the entities. For example: var result = from a in db.Customers.Include("Orders") select a; This will create a LEFT OUTER JOIN between Customers and Orders.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
No New Questions to Answer in this Category !! You can
Post New Questions
Answer Questions in Different Category