SelectQueryFluentBuilder.SortBy(String[]) Method
In This Article
Sorts the result set by specified columns. These columns are obtained from the last table added by the SelectQueryFluentBuilder.AddTable or SelectQueryFluentBuilder.Join method.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v24.2.dll
NuGet Package: DevExpress.DataAccess
#Declaration
public SelectQueryFluentBuilder SortBy(
params string[] columnNames
)
#Parameters
Name | Type | Description |
---|---|---|
column |
String[] | An array of String values, specifying the column names. |
#Returns
Type | Description |
---|---|
Select |
A Select |
See Also