SqlBuilder.LEFT_JOIN(String) Method
Appends the LEFT JOIN clause using the provided text.
Namespace: DbExtensions
Assembly: DbExtensions.dll
Overloads
| Name | Description |
|---|---|
| LEFT_JOIN() | Sets LEFT JOIN as the next clause, to be used by subsequent calls to clause continuation methods, such as _If(Boolean, ConditionalStringHandler). |
| LEFT_JOIN(SqlBuilder.ClauseStringHandler<LEFT_JOIN>) | Appends the LEFT JOIN clause using the provided interpolated string handler. |
| LEFT_JOIN(String) | Appends the LEFT JOIN clause using the provided text. |
Syntax
public SqlBuilder LEFT_JOIN(
string? text
)
Parameters
text String
The text that represents the body of the LEFT JOIN clause.
Return Value
SqlBuilder
A reference to this instance after the append operation has completed.