嵌套 lambda 表达式

发布于 2024-11-07 16:09:01 字数 190 浏览 0 评论 0原文

如何使用 lambda 表达式从列表中获取姓名等于“john”的人数。 如何创建我的 lambda 表达式?

List<Persons> persons;
person.Where(p=>p.Name.Equals("John");

现在我应该对返回的列表进行计数还是应该嵌套它?

How can I get the Count of Person whose name equals "john" from a List using lambda expressions.
How can I create my lambda expression?

List<Persons> persons;
person.Where(p=>p.Name.Equals("John");

Now do I do a count on the returned List or should I nest it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

嘴硬脾气大 2024-11-14 16:09:01

两者都不。使用采用表达式的 Count 方法的重载:

int cnt = person.Count(p => p.Name.Equals("John"));

Neither. Use the overload of the Count method that takes an expression:

int cnt = person.Count(p => p.Name.Equals("John"));
还给你自由 2024-11-14 16:09:01
person.Where(p=>p.Name.Equals("John")).Count();
person.Where(p=>p.Name.Equals("John")).Count();
随遇而安 2024-11-14 16:09:01
List<Person> persons;
/* code that populates persons list */
int count = persons.Where(p=>p.Name.Equals("John")).Count();
List<Person> persons;
/* code that populates persons list */
int count = persons.Where(p=>p.Name.Equals("John")).Count();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文