Table of Contents

Enum FilterOperation

Namespace
Datafication.Storage.Velocity.Models
Assembly
Datafication.Storage.Velocity.dll

Operations that can be performed in a data filter.

public enum FilterOperation

Fields

Between = 13

Between two values (inclusive).

Contains = 8

String contains operation.

EndsWith = 10

String ends with operation.

Equals = 0

Equality comparison.

GreaterThan = 2

Greater than comparison.

GreaterThanOrEqual = 3

Greater than or equal comparison.

In = 6

Check if value is in a list of values.

IsNotNull = 12

Check if value is not null.

IsNull = 11

Check if value is null.

LessThan = 4

Less than comparison.

LessThanOrEqual = 5

Less than or equal comparison.

NotEquals = 1

Inequality comparison.

NotIn = 7

Check if value is not in a list of values.

StartsWith = 9

String starts with operation.