1
Answer

IList quering using Linq

shosho s

shosho s

8y
312
1
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 
Answers (1)