Table of Contents

Enum ComparisonOperator

Namespace
Datafication.Core.Data
Assembly
Datafication.Core.dll

Specifies the comparison operator to use when filtering data.

public enum ComparisonOperator

Fields

Contains = 6

Tests if the column value contains the specified value (for string columns).

EndsWith = 8

Tests if the column value ends with the specified value (for string columns).

Equals = 0

Tests for equality between the column value and the specified value.

GreaterThan = 2

Tests if the column value is greater than the specified value.

GreaterThanOrEqual = 3

Tests if the column value is greater than or equal to the specified value.

LessThan = 4

Tests if the column value is less than the specified value.

LessThanOrEqual = 5

Tests if the column value is less than or equal to the specified value.

NotEquals = 1

Tests for inequality between the column value and the specified value.

StartsWith = 7

Tests if the column value starts with the specified value (for string columns).