Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

XpoDataSource.DefaultSorting Property

Specifies how data source contents are sorted by default, when sort order is not specified by the bound control.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v19.2.dll

Declaration

[DefaultValue("")]
public string DefaultSorting { get; set; }

Property Value

Type Default Description
String String.Empty

A String object which contains the names of the columns against which data source contents are sorted.

Remarks

This property accepts a string containing a column name followed by the sort order - “ASC” (ascending) or “DESC” (descending).

dataSource.DefaultSorting = "UnitPrice DESC";

Columns are sorted ascending by default - “ASC” can be omitted.

dataSource.DefaultSorting = "Name";

Multiple columns can be separated by semicolons.

dataSource.DefaultSorting = "UnitPrice DESC; Name";
See Also