I invoke a datasource method (WebAPI) and save the result into a property. This is what I always do when I want to bind e.g. a DataGrid with data.
The question is: I do not want to have all records of the result in my DataGrid. I want to filter the result before or while I am saving it into the property.
From the API, I get aaaaall the records, but I want to use only a few of them. E.g. only newer than a specific data, where a value is bigger than a number and so on.
I also could change my API and use parameters to filter on the API-side, but I want to keep it more general and filter it with Radzen.
Do you know what I mean?