[]
public virtual FilteredView<T> AsFilteredBound<TKey>(Expression<Func<T, TKey>> keySelector)
Type | Name | Description |
---|---|---|
Expression<Func<T, TKey>> | keySelector | A function that returns a key value for filtering given a view item. |
Type | Description |
---|---|
FilteredView<T> | A FilteredView<T> that contains elements of this view that have keys satisfying the condition. |
Name | Description |
---|---|
TKey | The type of the value used for filtering. |