Show / Hide Table of Contents

    SqlBuilder.EmbeddedHavingValue Method

    .NET Standard 2.x

    Creates an ISqlHavingCondition object which represents a search condition that can be used (enclosed in parentheses) when building the HAVING clause. Specifies a SQL expression on the left of the operator and a specific value on the right of the operator.

    Namespace: SnapObjects.Data

    Assembly: SnapObjects.Data.dll

    Overloads

    Method Description
    EmbeddedHavingValue(string left, object value) Creates an ISqlHavingCondition object which represents a search condition that can be used (enclosed in parentheses) when building the HAVING clause. Specifies a SQL expression on the left of the operator and a specific value on the right of the operator. The operator is '='.
    EmbeddedHavingValue(string left, SqlBinaryOperator sqlOperator, object value) Creates an ISqlHavingCondition object which represents a search condition that can be used (enclosed in parentheses) when building the HAVING clause. Specifies a SQL expression on the left of the operator and a specific value on the right of the operator.
    Back to top Generated by Appeon