|
|
Filtering
Users may impose filters on data to easily access only items that meet the specified criteria.
|
|
|
|
Filtering allows users to specify data of interest. Filtering is the process of making records invisible if they do not match specific criteria. It is straight-forward and easy to use filtering.
Code to perform a filter
|
|
|
|
Here is a list of the FilterCompareOperator operations currently supported:
-
Equals - asks if field value is equal to the compare value.
-
NotEquals - asks if field value is not equal to the compare value.
-
LessThan - asks if field value is less than the compare value.
-
LessThanOrEqualTo - asks if field value is less than or equal to the compare value.
-
GreaterThan - asks if field value is greater than the compare value.
-
GreaterThanOrEqualTo - asks if field value is greater than or equal to the compare value.
-
Like - asks if string field value begins like the compare value.
-
Match - asks if string field value is equal to the compare value.
-
Custom - allows users to add a delegate to define the filter.
|
|
|
|
|
|
|