[]
Filters the source view based on a predicate.
public View<T> Where(Expression<Func<T, bool>> predicate)
Public Function Where(predicate As Expression(Of Func(Of T, Boolean))) As View(Of T)
| 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. |