I have a data collection of type IEnumerable containing labour records for various employees. I wish to filter the list and return on
IEnumerable
You can filter your list with LINQ Where using Contains method:
Where
Contains
var result = list.Where(x => employees.Contains(x.EmployeeID));