Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RecordsNavigationController.OrderProviderSource Property

Provides access to the RecordsNavigationController‘s Order Provider.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public OrderProviderSource OrderProviderSource { get; set; }

#Property Value

Type Description
DevExpress.ExpressApp.SystemModule.OrderProviderSource

An OrderProviderSource object representing a service for getting required objects from the specified View.

#Remarks

To determine what object collection to use, and how to get required objects from it, when the NextObject and PreviousObject Actions are executed, the RecordsNavigationController uses an OrderProviderSource. This object provides access to an OrderProvider object that has useful methods for implementing NextObject and PreviousObject Actions execution. There are several built-in Order Providers. In addition, you can implement a custom one. Use this property to set an OrderProviderSource with the required Order Provider for the RecordsNavigationController. For details, refer to the RecordsNavigationController class description.

See Also