Class EntityFilterOperators
- Namespace
- Arbiter.CommandQuery.Queries
- Assembly
- Arbiter.CommandQuery.dll
A set of operators for filtering entities.
public static class EntityFilterOperators
- Inheritance
-
EntityFilterOperators
- Inherited Members
Fields
Contains
The operator for filtering entities that contain a specific value.
public const string Contains = "Contains"
Field Value
EndsWith
The operator for filtering entities that end with a specific value.
public const string EndsWith = "EndsWith"
Field Value
Equal
The operator for filtering entities that equal specific value.
public const string Equal = "eq"
Field Value
Expression
The operator for filtering entities that match the raw expression.
public const string Expression = "Expression"
Field Value
GreaterThan
The operator for filtering entities that are greater than a specific value.
public const string GreaterThan = "gt"
Field Value
GreaterThanOrEqual
The operator for filtering entities that are greater than or equal to a specific value.
public const string GreaterThanOrEqual = "gte"
Field Value
In
The operator for filtering entities that are in a specific set of values.
public const string In = "in"
Field Value
IsNotNull
The operator for filtering entities that are not null.
public const string IsNotNull = "IsNotNull"
Field Value
IsNull
The operator for filtering entities that are null.
public const string IsNull = "IsNull"
Field Value
LessThan
The operator for filtering entities that are less than a specific value.
public const string LessThan = "lt"
Field Value
LessThanOrEqual
The operator for filtering entities that are less than or equal to a specific value.
public const string LessThanOrEqual = "lte"
Field Value
NotEqual
The operator for filtering entities that do not equal specific value.
public const string NotEqual = "neq"
Field Value
StartsWith
The operator for filtering entities that start with a specific value.
public const string StartsWith = "StartsWith"