ISqlJoinBuilder.LeftJoin Method
.NET Standard 2.x
Uses the LEFT OUTER JOIN
operator to join the original table source and the new table source to create a joined table.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Overloads
Method | Description |
---|---|
LeftJoin(string table) | Uses the LEFT OUTER JOIN operator to join the original table source and the new table source to create a joined table. |
LeftJoin(string table, string alias) | Uses the LEFT OUTER JOIN operator to join the original table source and the new table source to create a joined table. You need to specify an alias for the new table source. |
LeftJoin(string table, string alias, string schema) | Uses the LEFT OUTER JOIN operator to join the original table source and the new table source to create a joined table. You need to specify a schema and an alias for the new table source. |
LeftJoin(ISqlBuilder sqlBuilder, string alias) | Uses the LEFT OUTER JOIN operator to join the original table source and the new table source (specified by a subquery generated by an ISqlBuilder object) to create a joined table. You need to specify an alias for the new table source. |