[]
        
(Showing Draft Content)

C1.Data.ClientView-1.AsFilteredBound

AsFilteredBound Method

AsFilteredBound<TKey>(Expression<Func<T, TKey>>)

Filters the view on the server using a key selector function and configurable value and operator.

Declaration
public virtual FilteredView<T> AsFilteredBound<TKey>(Expression<Func<T, TKey>> keySelector)
Parameters
Type Name Description
Expression<Func<T, TKey>> keySelector

A function that returns a key value for filtering given a view item.

Returns
Type Description
FilteredView<T>

A FilteredView<T> that contains elements of this view that have keys satisfying the condition.

Type Parameters
Name Description
TKey

The type of the value used for filtering.