I have a list method:
public List GetDiscipline(int projectId,List roles)
{
return (from i in EmployeeList where i.ProjectId == projectId&& roles.Contains(i.RoleId) select i).ToList();
}
My question is how can i create another list based on the results of this list?
any help would be greatly appreciated and thank you in advance :)
Guest UserPosted Sep 21, 2015, 9:54 AM