menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class QueryBuilderOperatorType - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class QueryBuilderOperatorType

    Specifies default operator.

    Inheritance
    System.Object
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType

    Between

    Represents the between operator.

    Declaration
    public const QueryBuilderOperatorType Between
    Field Value
    Type
    QueryBuilderOperatorType

    Contains

    Represents the 'contains' operator.

    Declaration
    public const QueryBuilderOperatorType Contains
    Field Value
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType

    NotBetween

    Represents the 'not between' operator.

    Declaration
    public const QueryBuilderOperatorType NotBetween
    Field Value
    Type
    QueryBuilderOperatorType

    NotContains

    Represents the 'not contains' operator.

    Declaration
    public const QueryBuilderOperatorType NotContains
    Field Value
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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
    Type
    QueryBuilderOperatorType
    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved