Mid LINQ

Chaining multiple Where() calls?

Chaining multiple Where() calls

var result = employees

.Where(e => e.Salary > 70000)

.Where(e => e.Department == "IT");

More from LINQ Tutorial

All questions for this course