I got interested in paging and sorting on large tables. And I found a couple of very good pointers, that I wanted to share with you:
- Manuel Abadia uses the ObjectDataSource to do all that stuff:
ObjectDataSource in Depth (Part 1)
is the first article in a great series of articles explaining the ODS in depth. - Jasmin Muharemovic has dicussed paging of large resultsets.
It is an increadible look into the wonders of SQL and performance. Make sure you check out all of the comments on that article as well. Very informative. - Scott Mitchell wrote another bunch of great articles at 4 guys:
Custom Paging in ASP.NET 2.0 with SQL Server 2005
Sorting Custom Paged Results
This article also features among other things a peek into configuring the ObjectDataSource for sorting with custom paging. - Greg Hamilton has a very interesting optimization using ROWCOUNT.
- Manuel Abadia has another interesting article Custom Paging for TableAdapters without using SPs
- Last but not least there are two articles at ScottGu’s blog:
Paging through lots of data efficiently (and in an Ajax way) with ASP.NET 2.0
Efficient Data Paging with the ASP.NET 2.0 DataList Control and ObjectDataSource
A LOT to read.
Does anybody have more pointers? I am especially interested in anything related to the ObjectDataSource.
