How write this SQL in LINQ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ronald S. Cook

    How write this SQL in LINQ?

    Does anyone know how I would write this SQL in LINQ:

    SELECT DepartmentId,
    MAX(EmployeeHir eDate)
    FROM Employee
    GROUP BY DepartmentId

    Thanks,
    Ron

Working...