Skip to main content
.NET 6.0+

XPBaseCollection.Sorting Property

Gets or sets the sort settings for the current collection.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public SortingCollection Sorting { get; set; }

Property Value

Type Description
SortingCollection

The SortingCollection that specifies the sort order for the collection.

Remarks

Calling the SortingCollection‘s Add, Remove and Clear methods is not allowed. To sort a collection, a new SortingCollection object must be created and assigned to the Sorting property.

using DevExpress.Xpo;
using DevExpress.Xpo.DB;
// ...
xpCollectionPerson.Sorting = new SortingCollection(
    new SortProperty("Name", SortingDirection.Ascending)
);

To learn more, see Sorting.

Note

For performance reasons, we recommend that you not use the JoinOperand in sort properties, as this significantly increases the number of queries sent to the server.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Sorting property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also