Table of Contents

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

string

EndsWith

The operator for filtering entities that end with a specific value.

public const string EndsWith = "EndsWith"

Field Value

string

Equal

The operator for filtering entities that equal specific value.

public const string Equal = "eq"

Field Value

string

Expression

The operator for filtering entities that match the raw expression.

public const string Expression = "Expression"

Field Value

string

GreaterThan

The operator for filtering entities that are greater than a specific value.

public const string GreaterThan = "gt"

Field Value

string

GreaterThanOrEqual

The operator for filtering entities that are greater than or equal to a specific value.

public const string GreaterThanOrEqual = "gte"

Field Value

string

In

The operator for filtering entities that are in a specific set of values.

public const string In = "in"

Field Value

string

IsNotNull

The operator for filtering entities that are not null.

public const string IsNotNull = "IsNotNull"

Field Value

string

IsNull

The operator for filtering entities that are null.

public const string IsNull = "IsNull"

Field Value

string

LessThan

The operator for filtering entities that are less than a specific value.

public const string LessThan = "lt"

Field Value

string

LessThanOrEqual

The operator for filtering entities that are less than or equal to a specific value.

public const string LessThanOrEqual = "lte"

Field Value

string

NotEqual

The operator for filtering entities that do not equal specific value.

public const string NotEqual = "neq"

Field Value

string

StartsWith

The operator for filtering entities that start with a specific value.

public const string StartsWith = "StartsWith"

Field Value

string