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 = 13Between two values (inclusive).
Contains = 8String contains operation.
EndsWith = 10String ends with operation.
Equals = 0Equality comparison.
GreaterThan = 2Greater than comparison.
GreaterThanOrEqual = 3Greater than or equal comparison.
In = 6Check if value is in a list of values.
IsNotNull = 12Check if value is not null.
IsNull = 11Check if value is null.
LessThan = 4Less than comparison.
LessThanOrEqual = 5Less than or equal comparison.
NotEquals = 1Inequality comparison.
NotIn = 7Check if value is not in a list of values.
StartsWith = 9String starts with operation.