I am using an AJAX driven grid that is pulling it's data from SQL Azure. I would like to use the paging feature, as we can have > 100,000 rows.
I see in the examples there are extensions to help take the DataSourceRequest and apply it to the data to enable to paging. I'm assuming when this is applied to an IQueryable<> with Entity Framework (or similar) that it will apply the sorting, grouping and paging automatically to the query on the database.
However, our data access layer does not use EF or IQueryable<>, we are using straight SqlClient to access the database.
With this said, we need to take the DataSourceRequest and apply that to a standard text sql query. We can write this code ourselves, but wondering if this is a utility that already exists in the kendo framework? Or is there an example to get us started?
Thanks for the help in advance
I see in the examples there are extensions to help take the DataSourceRequest and apply it to the data to enable to paging. I'm assuming when this is applied to an IQueryable<> with Entity Framework (or similar) that it will apply the sorting, grouping and paging automatically to the query on the database.
However, our data access layer does not use EF or IQueryable<>, we are using straight SqlClient to access the database.
With this said, we need to take the DataSourceRequest and apply that to a standard text sql query. We can write this code ourselves, but wondering if this is a utility that already exists in the kendo framework? Or is there an example to get us started?
Thanks for the help in advance