Mid LINQ

Find employees in 'IT' with salary > 80k?

Find employees in 'IT' with salary > 80k

var itHighEarners = employees

.Where(e => e.Department == "IT" && e.Salary > 80000);

More from LINQ Tutorial

All questions for this course