InsertSelectStatement

InsertSelectStatement allows the construction of INSERT/SELECT statements.

Namespace:
Inetdev.Data.Query
Type:
Class
Public:
Yes
Protected:
No
Sealed:
No
Abstract:
No
Inherits from:
Inetdev.Data.Query.Statement

Constructors

InsertSelectStatement

Default constructor

Signature:
public Void InsertSelectStatement()

InsertSelectStatement

Initializes a new instance of InsertSelectStatement.

Signature:
public Void InsertSelectStatement(repository)
Parameters
Name Type Summary
repository Repository The underlaying repository.

InsertSelectStatement

Initializes a new instance of InsertSelectStatement.

Signature:
public Void InsertSelectStatement(name, repository)
Parameters
Name Type Summary
name String The name of the statement.
repository Repository The underlaying repository.

Properties

Columns

List of Columns for the INSERT/SELECT statement.

Signature:
public IList<Column> Columns { get; }

Select

The SelectStatement for the INSERT/SELECT statement.

Signature:
public SelectStatement Select { get; set; }