InsertSelectStatement allows the construction of INSERT/SELECT statements.
Default constructor
public Void InsertSelectStatement()
Initializes a new instance of InsertSelectStatement.
public Void InsertSelectStatement(repository)
Name | Type | Summary |
---|---|---|
repository | Repository | The underlaying repository. |
Initializes a new instance of InsertSelectStatement.
public Void InsertSelectStatement(name, repository)
Name | Type | Summary |
---|---|---|
name | String | The name of the statement. |
repository | Repository | The underlaying repository. |
List of Columns for the INSERT/SELECT statement.
public IList<Column> Columns { get; }
The SelectStatement for the INSERT/SELECT statement.
public SelectStatement Select { get; set; }
In this document