FilterOperator Enum

Definition

Specifies the supported filter operations.

public enum class FilterOperator
public enum FilterOperator
type FilterOperator = 
Public Enum FilterOperator
Inheritance
FilterOperator

Fields

Between 8

Includes the object in the result if the property value is between two values.

Contains 2

Includes the object in the result if the property value contains a specified value.

Equal 0

Includes the object in the result if the property value is equal to the filter value.

GreaterThan 6

Includes the object in the result if the property value is greater than the filter value.

GreaterThanEqual 7

Includes the object in the result if the property value is greater than or equal to the filter value.

LessThan 4

Includes the object in the result if the property value is less than the filter value.

LessThanEqual 5

Includes the object in the result if the property value is less than or equal to the filter value.

NotBetween 9

Includes the object in the result if the property value is not between two values.

NotContains 3

Includes the object in the result if the property value does not contain a specified value.

NotEqual 10

Includes the object in the result if the property value is not equal to the filter value.

StartsWith 1

Includes the object in the result if the property value starts with a specified value.

Applies to