Enum ComparisonOperator
- Namespace
- Datafication.Core.Data
- Assembly
- Datafication.Core.dll
Specifies the comparison operator to use when filtering data.
public enum ComparisonOperator
Fields
Contains = 6Tests if the column value contains the specified value (for string columns).
EndsWith = 8Tests if the column value ends with the specified value (for string columns).
Equals = 0Tests for equality between the column value and the specified value.
GreaterThan = 2Tests if the column value is greater than the specified value.
GreaterThanOrEqual = 3Tests if the column value is greater than or equal to the specified value.
LessThan = 4Tests if the column value is less than the specified value.
LessThanOrEqual = 5Tests if the column value is less than or equal to the specified value.
NotEquals = 1Tests for inequality between the column value and the specified value.
StartsWith = 7Tests if the column value starts with the specified value (for string columns).