Mid LINQ Select only employees with even ID? Select only employees with even ID var evens = employees.Where(e => e.Id % 2 == 0);