Filtering refers to the operations of restricting the result set to contain only those elements that satisfy a specified condition.
Where
Selects values that are based on a predicate function.
Method Syntax
// Where
var numbers = new int[] { 1, 2, 3, 4, 5, 6, 7, 8 };
var evens = number...