Use generic SortDescriptor
This help article will show you how to create generic expression SortDescriptor<T> for a databound RadGridView.
This article will use the viewmodel and model defined in Examples 3 and 4 in the Getting Started article. Before continuing, you should familiarize yourself with it.
Generic SortDescriptor
The RadGridView control allows for ordering the data items by the result of a complex calculation without having to expose it through a read-only property. All you need to do is to use a SortDescriptor<TElement, TKey=>. In order to demonstrate this, we will setup the RadGridView as demonstrated in Example 1.
Example 1: Setting up the RadGridView
Example 2: Create a generic SortDescriptor
For more information you can check the Sorting section.