Mid LINQ

Partition employees based on salary threshold?

Partition employees based on salary threshold

var high = employees.Where(e => e.Salary >= 80000);

var low = employees.Where(e => e.Salary < 80000);

More from LINQ Tutorial

All questions for this course