SelectQueryFluentBuilder.SelectColumn(String, AggregationType, String) Method
Selects a specified column from the last table added by the SelectQueryFluentBuilder.AddTable or SelectQueryFluentBuilder.Join method.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v25.1.dll
NuGet Package: DevExpress.DataAccess
Declaration
public SelectQueryFluentBuilder SelectColumn(
string columnName,
AggregationType aggregate,
string alias
)
Parameters
| Name | Type | Description |
|---|---|---|
| columnName | String | A String value, specifying the column name. |
| aggregate | AggregationType | An AggregationType enumeration value. |
| alias | String | A String value, specifying the column alias. |
Returns
| Type | Description |
|---|---|
| SelectQueryFluentBuilder | A SelectQueryFluentBuilder object. |
See Also