Method | Description | |
---|---|---|
SelectColumn ( ) : System | ||
SelectColumn ( |
||
SelectColumn ( |
||
SelectColumn ( |
Creates a SelectColumn
|
|
SelectColumn ( string columnName ) : System |
Creates a SelectColumn with a column name, no table, no column alias and no function
|
|
SelectColumn ( string columnName, |
Creates a SelectColumn with a column name, table, no column alias and no function
|
|
SelectColumn ( string columnName, |
||
SelectColumn ( string columnName, |
Creates a SelectColumn with a column name, table and column alias
|
|
SelectColumn ( string columnName, |
Creates a SelectColumn with a column name, table, column alias and optional aggregation function
|
public SelectColumn ( |
||
columnName | ||
table | ||
return | System |
public SelectColumn ( |
||
columnName | ||
table | ||
function | SqlAggregationFunction | |
return | System |
public SelectColumn ( |
||
expr | Expression | |
columnAlias | string | Column alias |
return | System |
public SelectColumn ( string columnName ) : System | ||
columnName | string | Name of a column |
return | System |
public SelectColumn ( string columnName, |
||
columnName | string | Name of a column |
table | The table this field belongs to | |
return | System |
public SelectColumn ( string columnName, |
||
columnName | string | |
table | ||
function | SqlAggregationFunction | |
return | System |
public SelectColumn ( string columnName, |
||
columnName | string | Name of a column |
table | The table this field belongs to | |
columnAlias | string | Alias of the column |
return | System |
public SelectColumn ( string columnName, |
||
columnName | string | Name of a column |
table | The table this field belongs to | |
columnAlias | string | Alias of the column |
function | SqlAggregationFunction | Aggregation function to be applied to the column. Use SqlAggregationFunction.None to specify that no function should be applied. |
return | System |