I have an Ilist:
 
   IList<Department> dfList = _LookUpProvider.DepartmentLookupAll().OfType<Department>().ToList(); 
 
so this brings the list of the departments. But i want to filter  this list down and create another list 
which gets three elements by their ID using Linq.
 
thank you  in advance