SortingCollection Class
A collection of SortProperty objects.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
Remarks
The collection can be assigned to the XPCollection, XPView, XPDataView, or XPCursor object via an object’s Sorting property.
Note
Don’t make your code dependent on the order of records returned by these objects, unless you’ve explicitly sorted them. By default, if the XPCollection, XPView, XPDataView, or XPCursor is not sorted, records will be returned in an arbitrary order. This mimics the behavior of the SQL SELECT statement used in the same circumstances.
Example
The following example demonstrates how to sort a collection (xpCollectionPerson) in ascending order against a ‘Name’ field.
using DevExpress.Xpo;
using DevExpress.Xpo.DB;
SortingCollection sortCollection = new SortingCollection();
sortCollection.Add(new SortProperty("Name", SortingDirection.Ascending));
xpCollectionPerson.Sorting = sortCollection;