Search Results for

    Show / Hide Table of Contents

    Enum SQLOperator

    Defines the list of possible SQL operators.

    Namespace: LemonEdge.Utils.Database
    Assembly: Utils.dll
    Syntax
    public enum SQLOperator : short
    Remarks

    Maps directly to telerik filter operators

    Fields

    Name Description
    Contains

    xxx Like '%yyy%'

    DoesNotContain

    not(xxx Like '%yyy%')

    EndsWith

    xxx Like '%yyy'

    Equals

    ==

    GreaterThan
    GreaterThanOrEqualTo

    =

    IsContainedIn

    is in ([])

    IsEmpty

    == null

    IsNotContainedIn

    is not in ([])

    IsNotEmpty

    != null

    IsNotNull

    != null

    IsNull

    == null

    LessThan

    $lt;

    LessThanOrEqualsTo

    <=

    NotEquals

    !=

    StartsWith

    xxx Like 'yyy%'

    Extension Methods

    EnumHelper.GetShortFlaggedValues<SQLOperator>()
    EnumHelper.ToShortGuid<SQLOperator>()
    MiscExtensions.SetIfNotEqual<SQLOperator, P>(Expression<Func<SQLOperator, P>>, P)
    ReflectionExtensions.ClearEventInvocations(String)
    ReflectionHelper.GetEnumValueCustomAttributes<AttrType, SQLOperator>()
    StringExtensions.ToCSVFormatString(Type)
    SQLExtensions.ToSQLValue(Boolean)
    SQLExtensions.ToSQLStatement(String, String)
    In This Article
    Back to top © LemonTree Software Ltd. All rights reserved.