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