I have employee table, which looks as below
I have employeedetails table, which looks as below
I have performed left join using SQL query, it works well.
SELECT E.* FROM Employee E
LEFT JOIN EmployeeDetails ED ON ED.EmpId = E.EmpId
WHERE ED.EmpDetailsId IS NULL
I need same result as above using LINQ to Entities and also lambda expression. How to do these using both ways (LINQ and LAMBDA)