Show / Hide Table of Contents

    ISqlConditionBuilder Interface

    .NET Standard 2.x

    Represents the search condition in a SQL statement. It is the base interface of ISqlWhereCondition, ISqlJoinCondition, and ISqlHavingCondition.

    Namespace: SnapObjects.Data

    Assembly: SnapObjects.Data.dll

    Syntax

      public interface ISqlConditionBuilder;
    

    Property

    Name Return Type Description
    UsedParameters IReadOnlyDictionary<string, ISqlParameter> Gets an IReadOnlyDictionary<string, ISqlParameter> object that contains all of the parameters used in the current search condition.

    Method

    Name Return Type Description
    ToSqlString(DataContext context) string Returns the raw SQL string for the current search condition in the corresponding database.
    Back to top Generated by Appeon