I have a mock application where an inheritance chain like Employee,Manager,President etc.
Employee,Manager,President
The Employee class looks like
class Employee {
Quick and perhaps dirtier solution that works:
return managerList .OrderByDescending(x => x.EmployeesManaged.Count) .FirstOrDefault();