Lambda 表达式和方法调用
您好,我在 Listview 中有一个对象集合,我需要知道是否可以使用 lambda 表达式迭代它们。并在表达式中调用它的方法。
假设我需要将一群人保存到数据库中。
List<People> someList;
someList.Select(person => person.Save());
这可能吗?到目前为止我还没能让它工作。 谢谢
Hi I have a collection of Objects in a Listview and i need to know if i can iterate through them with a lambda expression. and call a method on it in the expression.
Lets say i need to save a group of people to a database.
List<People> someList;
someList.Select(person => person.Save());
is this possible to do? so far i have not been able to get it working.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用通用列表的 ForEach 方法:
You can use the ForEach method of a generic list:
听起来您想要一个 foreach 语句:
但如果您真的想在 lambda 表达式和 LINQ 中执行此操作,那么上述代码的问题是 .Select(...) 返回 IEnumerable/IQueryable ,这会创建一个新查询,但不会执行您的 lambda 表达式。
您可以通过调用强制枚举 IEnumerable/IQueryable 表示的数据的扩展方法来强制 lambda 进行计算。例如通过这样做:
但这也假设您的 Save() 方法返回非空。
编辑:
正如其他人指出的那样,如果您专门使用 List<>,那么您还可以执行以下操作:
Sounds like you want a foreach statement:
But if you really want to do it in lambda expressions and LINQ, then your problem with the above code is that .Select(...) returns an IEnumerable/IQueryable, which creates a new query but doesn't execute your lambda expressions.
You could force the lambda to evaluate by calling an extension method that forces an enumeration of the data the IEnumerable/IQueryable represents. For instance by doing:
but this also assumes your Save() method returns non-void.
Edit:
As others have pointed out, if you're working specifically with a List<>, then you can also do: