New to Telerik UI for WPF? Start a free 30-day trial
Use generic FilterDescriptor
Updated on Sep 24, 2025
This help article will show you how to create generic expression FilterDescriptors
Generic FilterDescriptor
The new FilterDescriptor
Example 3: Create a generic FilterDescriptor
C#
var descriptor = new FilterDescriptor<Employee> { FilteringExpression = e => prospects.Contains(e) };
Then, you should add the defined FilterDescriptor to the FilterDescriptors collection of RadGridView.
For more information you can check the Filtering section