开发者

How to apply paging to a dataset?

开发者 https://www.devze.com 2022-12-29 17:59 出处:网络
How can I apply paging to a dataset? I have a method in which I dynamically build a table from a dataset. Querying the database from which I get my dataset from is not an issue but开发者_开发百科 iter

How can I apply paging to a dataset? I have a method in which I dynamically build a table from a dataset. Querying the database from which I get my dataset from is not an issue but开发者_开发百科 iterating the datarows from the dataset is slow.

To increase performance when loading a page containing a lot of datarows I want to apply paging ability.

A feature that would be good to have is ability for the user to set pagesize (how many rows to display on each page).


If your data is a single DataTable then you can use the AsEnumerable() extension method. That will return the data as an IEnumerable collection. You can then use the LINQ extension methods .Skip() and .Take().

IEnumerable<DataRow> MyDataPage = MyDataTable.AsEnumerable().Skip(100).Take(10);

The above code would give you rows 101 to 110 of MyDataTable and it would be an IEnumerable collection which you can bind just like a data table. If you need it to be an actual DataTable you can just call CopyToDataTable() thus:

DataTable NewDT = MyDataPage.CopyToDataTable();

More detailed info is available here


You can take a GridView to show the data and use its paging ability: http://msdn.microsoft.com/en-us/library/5aw1xfh3%28v=VS.80%29.aspx


Linq is best option.

ROW_NUMBER() is also an option in SQL server 2005

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号