嵌套 lambda 表达式
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
两者都不。使用采用表达式的
Count
方法的重载:Neither. Use the overload of the
Count
method that takes an expression: