[]
Filters the source view based on a predicate.
public View<T> Where(Expression<Func<T, bool>> predicate)
| Type | Name | Description |
|---|---|---|
| Expression<Func<T, bool>> | predicate | A function to test each element for a condition. |
| Type | Description |
|---|---|
| View<T> | A view that contains elements of this view that satisfy the condition. |