如何过滤列表<客户>充满物体客户>
我有一个 Person 类和一个 List
类型的列表,
class person
{
int id;
string FirstName;
string LastName;
}
我有十个 Person 对象填充了 List。
我的列表已绑定到 Jqgrid。在分页上,我想过滤列表并将网格与该页面的数据绑定。
因此,如果有人可以告诉我如何在 List
上进行分页
I have a class Person and a list of type List<Person>
class person
{
int id;
string FirstName;
string LastName;
}
I have ten Person objects filled it the List.
My List is bound to Jqgrid. On Paging i want to filter the List and bind the grid with the data for that Page.
So if anyone can tell me how to do paging on a List<Person>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前尚不清楚您是要过滤列表还是对结果进行分页。对结果进行分页的典型方法是结合使用
Skip()
和Take()
:It's not clear whether you are trying to filter the List or page the results. The typical way to page results is using a combination of
Skip()
andTake()
: