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);
Find employees in 'IT' with salary > 80k
var itHighEarners = employees
.Where(e => e.Department == "IT" && e.Salary > 80000);