如何过滤 .Net2.0 中的通用列表?
我正在使用 asp.net 2.0 和 C#。
我有一个通用列表,
List<EmployeeInfo> empInfoList;
该列表加载了员工信息。现在,我想使用文本框值过滤此列表。这是“员工姓名”。
我必须使用employeeName 过滤此列表,然后再次将其绑定到gridview。
我不知道我该怎么做。请帮忙。
提前致谢。
I am using asp.net 2.0 and C#.
I have a generic list,
List<EmployeeInfo> empInfoList;
this list is loaded with the employee information. Now, I want to filter this list with the textbox value. Which is "EmploeeName".
I have to filter this list with the employeeName, and bind it to the gridview again.
I am not sure how can I do that. Please help.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您使用的是 .Net2.0,因此无法使用 LINQ,但是您可以使用委托和 FindAll 方法:
As you're using .Net2.0 you can't use LINQ, however you can use a delegate and the FindAll method: