Show / Hide Table of Contents

    ISqlJoinBuilder.Join Method

    .NET Standard 2.x

    Creates a table by joining the original table source with a new table source, without specifying the type of the JOIN operator.

    Namespace: SnapObjects.Data

    Assembly: SnapObjects.Data.dll

    Overloads

    Method Description
    Join(string table) Creates a table by joining the original table source with a new table source, without specifying the type of the JOIN operator.
    Join(string table, string alias) Creates a table by joining the original table source with a new table source, without specifying the type of the JOIN operator. You need to specify an alias for the new table source.
    Join(string table, string alias, string schema) Creates a table by joining the original table source with a new table source, without specifying the type of the JOIN operator. You need to specify a schema and an alias for the new table source.
    Join(ISqlBuilder sqlBuilder, string alias) Creates a table by joining the original table source with a new table source which is specified by a subquery generated by an ISqlBuilder object. You need to specify an alias for the new table source.
    Back to top Generated by Appeon