SqlBuilder.FROM Method
Sets FROM as the next clause, to be used by subsequent calls to clause continuation methods, such as _If(Boolean, ConditionalStringHandler).
Namespace: DbExtensions
Assembly: DbExtensions.dll
Overloads
| Name | Description |
|---|---|
| FROM() | Sets FROM as the next clause, to be used by subsequent calls to clause continuation methods, such as _If(Boolean, ConditionalStringHandler). |
| FROM(SqlBuilder.ClauseStringHandler<FROM>) | Appends the FROM clause using the provided interpolated string handler. |
| FROM(String) | Appends the FROM clause using the provided text. |
| FROM(SqlBuilder, String) | Appends the FROM clause using the provided subQuery as body named after alias. |
| FROM(SqlSet, String) | Appends the FROM clause using the provided subQuery as body named after alias. |
Syntax
public SqlBuilder FROM()
Return Value
SqlBuilder
A reference to this instance after the operation has completed.