Join Example in Entity framework and Linq


  using (var context = new DataBaseEntities())
  {          var data = from emp in context.Employees
                       join dpt in context.Departments on emp.DepartmentId equals dpt.Id
                       where dpt.Id == 1
                       select new { epf = emp.EPFNumber, dept_name = dpt.DepartmentName };
            
  }

1 thought on “Join Example in Entity framework and Linq

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.