I have a GridView connected to a NHibernateDataSource.
The GridView has set:
AllowPaging="true" AllowSorting="true"
And the NHibernateDataSource:
GenerateDataTable="true"
Running the page I observed that:
loading the data in the GridView for the first time
loading another page of the GridView or
- sorting after a column
takes about the same amount of time (around 10 seconds). I assume this happens cause the NHibernateDataSource gets all the data from the database server on every operation like paging/sorting.
Adding EnablePaging="true" on the NHibernateDataSource I observed that paging no longer takes that long to load (sorting takes the same amount of time though).
My question is:
How can I make the NHibernateDataSource also do the sorting on the server?
Thanks for replies!