Show / Hide Table of Contents

    ISqlHavingAndOr<TBuilder>.OrHaving Method

    .NET Standard 2.x

    Adds the OR logical operator and a search condition to the HAVING clause.

    Namespace: SnapObjects.Data

    Assembly: SnapObjects.Data.dll

    Overloads

    Method Description
    OrHaving(string left, ISqlParameter parameter) Adds the OR logical operator and a search condition to the HAVING clause. Specifies a SQL expression on the left of the operator and a SQL parameter on the right of the operator. The operator is '='.
    OrHaving(string left, SqlBinaryOperator sqlOperator, ISqlParameter parameter) Adds the OR logical operator and a search condition to the HAVING clause. Specifies a SQL expression to the left of the operator and a SQL parameter to the right of the operator.
    OrHaving(string left, string right) Adds the OR logical operator and a search condition to the HAVING clause. Specifies SQL expressions on both the left and right of the operator. The operator is '='.
    OrHaving(string left, SqlBinaryOperator sqlOperator, string right) Adds the OR logical operator and a search condition to the HAVING clause. Specifies SQL expressions on both the left and right of the operator.
    OrHaving(string left, ISqlBuilder sqlBuilder) Adds the OR logical operator and a search condition to the HAVING clause. Specifies a SQL expression on the left of the operator and a SQL subquery on the right of the operator. The operator is '='.
    OrHaving(string left, SqlBinaryOperator sqlOperator, ISqlBuilder sqlBuilder) Adds the OR logical operator and a search condition to the HAVING clause. Specifies a SQL expression on the left of the operator and a SQL subquery on the right of the operator.
    OrHaving(ISqlHavingCondition condition) Adds the OR logical operator and a search condition (specified by an ISqlWhereCondition object) to the HAVING clause.
    Back to top Generated by Appeon