I have a Gridview with data from a table which normally is ok as it is. But in some cases i have to manipulate the data, and i can't just do it from the query as there are many different cases and requires complex calculations.
Example: base data loaded from db:
date price buy_price
2019-05-01 15.75 10
2019-05-02 20.15 10.50
same data which passed through complex calculations
date price buy_price
2019-05-01 3.75 3
2019-05-02 4.70 3.10
I would like to use GridView cause the ajax filtering and sorting are really useful.
How can i manipulate the data AFTER the query the Gridview executes based on the DataProvider?