I have 10 lakhs records in my database and I don't want to fetch all the data to display in UI client, so I implement paging using .skip() & .take() this works fine. But problem is when a user tries to sort the grid on a particular column how to dynamically sort & modify the query on the sorted column ?? (Note : I am using enitytframework to fetch data).
Thanks in Advance.