Table of Contents

Enum ConditionOp

Namespace
Tripous.Data
Assembly
Tripous.Data.dll

Represents a condition operator used in building filter expressions.

public enum ConditionOp
Extension Methods

Fields

Between = 11

The value is between two specified values.

Contains = 8

The value contains the specified substring.

EndsWith = 10

The value ends with the specified substring.

Equal = 1

Equal to (=).

Greater = 3

Greater than (>).

GreaterOrEqual = 4

Greater than or equal to (>=).

In = 12

The value is contained in a specified list of values.

Less = 5

Less than (<).

LessOrEqual = 6

Less than or equal to (<=).

Like = 7

Matches a pattern using the SQL LIKE operator.

None = 0

No operator specified.

NotEqual = 2

Not equal to (<>).

Null = 13

The value is null.

StartsWith = 9

The value starts with the specified substring.