Show / Hide Table of Contents

    ISqlQueryBuilder.Select Method

    .NET Standard 2.x

    Adds a column (which is returned by a subquery specified by an ISqlBuilder object) to the select list of a SELECT clause. It uses the name property of the ISqlBuilder object as the alias for this column by default.

    Namespace: SnapObjects.Data

    Assembly: SnapObjects.Data.dll

    Overloads

    Method Description
    Select(ISqlBuilder sqlBuilder) Adds a column (which is returned by a subquery specified by an ISqlBuilder object) to the select list of a SELECT clause. It uses the name property of the ISqlBuilder object as the alias for this column by default.
    Select(ISqlBuilder sqlBuilder, string alias) Adds a column (which is returned by a subquery specified by an ISqlBuilder object) to the select list of a SELECT clause and specifies an alias for this column.
    Select(string column) Adds a column to the select list of a SELECT clause.
    Select(string[] columns) Adds multiple columns to the select list of a SELECT clause.
    Select(string column, string alias) Adds a column to the select list of a SELECT clause, and specifies an alias for this column.
    Back to top Generated by Appeon