'Declaration Public Enum Def.FilterOperator Inherits System.Enum
public enum Def.FilterOperator : System.Enum
'Declaration Public Enum Def.FilterOperator Inherits System.Enum
public enum Def.FilterOperator : System.Enum
Member | Description |
---|---|
Between | Checks if the value falls in a given range. |
BetweenExclusive | Checks if the value does not fall in a given range, begin and end values are excluded. |
BottomN | Last N items. |
BottomPercent | Last % items. |
Equal | Equality operator. |
GreaterThan | '$gt;' comparison operator. |
GreaterThanOrEqual | '$gt;=' comparison operator. |
In | Check for occurrences in the set operator. |
LessThan | '$lt;' comparison operator. |
LessThanOrEqual | '$lt;=' comparison operator. |
Like | Wild-card comparison operator. |
NotBetween | Checks if the value does not fall in a given range, begin and end values are included. |
NotEqual | Non-equality operator. |
NotLike | Wild-card comparison operator. |
TopN | 'First N items. |
TopPercent | First % items. |
System.Object
System.ValueType
System.Enum
GrapeCity.Enterprise.Data.DataEngine.Def.FilterOperator