如何过滤 .Net2.0 中的通用列表?

发布于 2024-09-07 21:19:45 字数 247 浏览 3 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人间☆小暴躁 2024-09-14 21:19:45

由于您使用的是 .Net2.0,因此无法使用 LINQ,但是您可以使用委托和 FindAll 方法:

string criteria = EmployeeName.Text.Trim().ToLower();
List<EmployeeInfo> resultList = empInfoList.FindAll(
   delegate(EmployeeInfo p)
   {
      return p.EmployeeName.ToLower().Contains(criteria);
   }
);

As you're using .Net2.0 you can't use LINQ, however you can use a delegate and the FindAll method:

string criteria = EmployeeName.Text.Trim().ToLower();
List<EmployeeInfo> resultList = empInfoList.FindAll(
   delegate(EmployeeInfo p)
   {
      return p.EmployeeName.ToLower().Contains(criteria);
   }
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文