SqlBuilder.FROM(SqlSet, String) Method
Appends the FROM clause using the provided subQuery as body named after alias.
Namespace: DbExtensions
Assembly: DbExtensions.dll
Overloads
Name | Description | |
---|---|---|
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. | |
FROM(String, Object[]) | Appends the FROM clause using the provided format string and parameters. |
Syntax
public SqlBuilder FROM(
SqlSet subQuery,
string alias
)
Parameters
subQuery SqlSet
The sub-query to use as the body of the FROM clause.
alias String
The alias of the sub-query.
Return Value
SqlBuilder
A reference to this instance after the append operation has completed.