Statement is an abstract base class for all statement classes.
Default constructor
public Void Statement()Initializes a new instance of Statement.
public Void Statement(repository)| Name | Type | Summary |
|---|---|---|
| repository | Repository | StatementRepository. |
Initializes a new instance of Statement.
public Void Statement(repository, useAlias)| Name | Type | Summary |
|---|---|---|
| repository | Repository | StatementRepository. |
| useAlias | Boolean | Indicates whether the alias must be included on the constructed commands. |
Initializes a new instance of Statement.
public Void Statement(name, repository)| Name | Type | Summary |
|---|---|---|
| name | String | Name of the Statement. |
| repository | Repository | StatementRepository. |
Initializes a new instance of Statement.
public Void Statement(name, repository, useAlias)| Name | Type | Summary |
|---|---|---|
| name | String | Name of the Statement. |
| repository | Repository | StatementRepository. |
| useAlias | Boolean | Indicates whether the alias must be included on the constructed commands. |
Name of the Statement.
public String Name { get; set; }StatementRepository.
public Repository Repository { get; set; }Indicates whether the alias must be included on the constructed commands.
public Boolean UseAlias { get; set; }List of SearchConditions that conforms the WHERE clause of the Statement.
public IList<SearchCondition> WhereConditions { get; }Returns a textual representation of the Statement.
public String ToString()In this document