Class QueryBuilderOperatorType
Specifies default operator.
Inheritance
Namespace: Syncfusion.Blazor.QueryBuilder
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class QueryBuilderOperatorType : Enum
Fields
Auto
Represents the auto operator which is starts with for string and equal for number, boolean, and date.
Declaration
public const QueryBuilderOperatorType Auto
Field Value
Between
Represents the between operator.
Declaration
public const QueryBuilderOperatorType Between
Field Value
Contains
Represents the 'contains' operator.
Declaration
public const QueryBuilderOperatorType Contains
Field Value
Remarks
It checks if the given field or value contains a specified substring in the records of a database and returns the matched records.
EndsWith
Represents the 'ends with' operator.
Declaration
public const QueryBuilderOperatorType EndsWith
Field Value
Remarks
It checks if the given field or value ends with a specified substring in the records of a database and returns the matched records.
Equal
Represents the equality operator.
Declaration
public const QueryBuilderOperatorType Equal
Field Value
Remarks
It compares the given value to the records in a database and returns the matched records.
GreaterThan
Represents the greater than operator.
Declaration
public const QueryBuilderOperatorType GreaterThan
Field Value
Remarks
It compares the given value to the records in a database and returns the matched records where the values on the left-hand side are greater than the right-hand side value.
GreaterThanOrEqual
Represents the greater than or equal to operator.
Declaration
public const QueryBuilderOperatorType GreaterThanOrEqual
Field Value
Remarks
It compares the given value to the records in a database and returns the matched records where the values on the left-hand side are greater than or equal to the right-hand side value.
In
Represents the 'in' operator.
Declaration
public const QueryBuilderOperatorType In
Field Value
Remarks
It compares values from the specified collection to the records in a database and returns the matched records.
IsEmpty
Represents the 'is empty' operator.
Declaration
public const QueryBuilderOperatorType IsEmpty
Field Value
Remarks
It checks if the given field or value is empty in the records of a database and returns the matched records.
IsNotEmpty
Represents the 'is not empty' operator.
Declaration
public const QueryBuilderOperatorType IsNotEmpty
Field Value
Remarks
It checks if the given field or value is not empty in the records of a database and returns the matched records.
IsNotNull
Represents the 'is not null' operator.
Declaration
public const QueryBuilderOperatorType IsNotNull
Field Value
Remarks
It checks if the given value is not null in the records of a database and returns the matched records.
IsNull
Represents the 'is null' operator.
Declaration
public const QueryBuilderOperatorType IsNull
Field Value
Remarks
It checks if the given value is null in the records of a database and returns the matched records.
LessThan
Represents the less than operator.
Declaration
public const QueryBuilderOperatorType LessThan
Field Value
Remarks
It compares the given value to the records in a database and returns the matched records where the values on the left-hand side are less than the right-hand side value.
LessThanOrEqual
Represents the less than or equal to operator.
Declaration
public const QueryBuilderOperatorType LessThanOrEqual
Field Value
Remarks
It compares the given value to the records in a database and returns the matched records where the values on the left-hand side are less than or equal to the right-hand side value.
None
Represents the scenario where no operator has been selected.
Declaration
public const QueryBuilderOperatorType None
Field Value
NotBetween
Represents the 'not between' operator.
Declaration
public const QueryBuilderOperatorType NotBetween
Field Value
NotContains
Represents the 'not contains' operator.
Declaration
public const QueryBuilderOperatorType NotContains
Field Value
Remarks
It checks if the given field or value does not contain a specified substring in the records of a database and returns the matched records.
NotEndsWith
Represents the 'not ends with' operator.
Declaration
public const QueryBuilderOperatorType NotEndsWith
Field Value
Remarks
It checks if the given field or value does not end with a specified substring in the records of a database and returns the matched records.
NotEqual
Represents the inequality operator.
Declaration
public const QueryBuilderOperatorType NotEqual
Field Value
Remarks
It compares the given value to the records in a database and returns the matched records where the values are not equal.
NotIn
Represents the 'not in' operator.
Declaration
public const QueryBuilderOperatorType NotIn
Field Value
Remarks
It compares values from the specified collection to the records in a database and returns the records that do not match.
NotStartsWith
Represents the 'not starts with' operator.
Declaration
public const QueryBuilderOperatorType NotStartsWith
Field Value
Remarks
It checks if the given field or value does not start with a specified substring in the records of a database and returns the matched records.
StartsWith
Represents the 'starts with' operator.
Declaration
public const QueryBuilderOperatorType StartsWith
Field Value
Remarks
It checks if the given field or value starts with a specified substring in the records of a database and returns the matched records.