码迷,mamicode.com
首页 > 其他好文 > 详细

分页之 skip(pageindex*(index-1).take(size).Tolist();

时间:2018-01-04 10:57:53      阅读:466      评论:0      收藏:0      [点我收藏+]

标签:bsp   begin   new   0.00   space   性能   测试   linq   nbsp   

grdView.DataSource = Select().Skip(pageSize * (start - 1)).Take(rows).ToList();
这个分页性能上并不高
下面是我的分页

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public static IList<T> PaginationDataSource<T>(IList<T> list, int pageIndex, int pageSize, out int totals)
        {
            totals = 0;
            if (pageIndex < 0)
                throw new ArgumentException("pageIndex必须大于0");
 
            if (pageSize <= 0)
                throw new ArgumentException("pageSize必须大于0");
 
 
            totals = list.Count;
            int rowBegin = (pageIndex - 1) * pageSize >= totals ? 0 : (pageIndex - 1) * pageSize;
            int rowEnd = rowBegin + pageSize - 1 >= totals ? totals : rowBegin + pageSize - 1;
 
            IList<T> result = new List<T>();
            for (int i = rowBegin; i < rowEnd; i++)
            {
                result.Add(list[i]);
            }
            return result;
        }



经测试 
我的方法大概 0.000061
Linq 的 skip take 0.000561
比我的方法 慢10倍

分页之 skip(pageindex*(index-1).take(size).Tolist();

标签:bsp   begin   new   0.00   space   性能   测试   linq   nbsp   

原文地址:https://www.cnblogs.com/Jason-365/p/8191199.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!