Lambda 表达式和方法调用

发布于 2024-10-20 06:31:15 字数 229 浏览 0 评论 0原文

您好,我在 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 技术交流群。

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

发布评论

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

评论(3

忆依然 2024-10-27 06:31:15

您可以使用通用列表的 ForEach 方法:

List<People> someList;
someList.ForEach(person => person.Save());

You can use the ForEach method of a generic list:

List<People> someList;
someList.ForEach(person => person.Save());
someList.ForEach(p => p.Save());
someList.ForEach(p => p.Save());
心房的律动 2024-10-27 06:31:15

听起来您想要一个 foreach 语句:

foreach(People p in someList)
{
    p.Save();
}

但如果您真的想在 lambda 表达式和 LINQ 中执行此操作,那么上述代码的问题是 .Select(...) 返回 IEnumerable/IQueryable ,这会创建一个新查询,但不会执行您的 lambda 表达式。

您可以通过调用强制枚举 IEnumerable/IQueryable 表示的数据的扩展方法来强制 lambda 进行计算。例如通过这样做:

someList.Select(person => person.Save()).Count();

但这也假设您的 Save() 方法返回非空。

编辑:
正如其他人指出的那样,如果您专门使用 List<>,那么您还可以执行以下操作:

someList.ForEach(person => person.Save());

Sounds like you want a foreach statement:

foreach(People p in someList)
{
    p.Save();
}

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:

someList.Select(person => person.Save()).Count();

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:

someList.ForEach(person => person.Save());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文