列表上的 ForEach 扩展方法 - 如何获取对象?

发布于 2024-10-11 01:45:13 字数 570 浏览 1 评论 0原文

所以我有这样的内容:

    List<Entity2> list = new List<Entity2>();
    Action<Entity2> adder= (z) =>retVal.Add(z);
    Func<Entity1, Entity2> getter = (x) =>repository2.GetSingle(f=>f.ID == x.Entity2ID);

    repository1.Get(q=>q.UserName).Foreach(adder(getter(???))); //Need to pass Entity1 to the delegate in here

Entity1 有一个名为 Entity2ID 的引用字段,但由于某些原因,在 linq 中没有设置显式关系。

因此,我们的想法是使用 getter 委托为每个实体 1 定位实体 2,因为它们没有显式关系,只需使用实体 1 集合上的 ForEach 扩展将匹配的实体 2 添加到列表中。

我的问题是如何获取正在执行 ForEach 的对象?

So I have something like this:

    List<Entity2> list = new List<Entity2>();
    Action<Entity2> adder= (z) =>retVal.Add(z);
    Func<Entity1, Entity2> getter = (x) =>repository2.GetSingle(f=>f.ID == x.Entity2ID);

    repository1.Get(q=>q.UserName).Foreach(adder(getter(???))); //Need to pass Entity1 to the delegate in here

Entity1 Has a reference field called Entity2ID, but there is no explicit relationship set in the linq for certain reasons.

SO the idea is to locate entity2 for every entity1 using the getter delegate since they have no explicit relationship and just add the matching entity2 to the list using the ForEach extension on the collection of entities1.

My question is how to I get a hold of the object I am performing the ForEach on?

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

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

发布评论

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

评论(1

不再让梦枯萎 2024-10-18 01:45:13
repository1.Get(q=>q.UserName).Foreach(x => adder(getter(x)));

或者,您应该能够执行以下操作:

    retval.AddRange(repository1.Get(q=>q.UserName)
                               .Select(x => repository2
                               .GetSingle(f=>f.ID == x.Entity2ID)));
repository1.Get(q=>q.UserName).Foreach(x => adder(getter(x)));

Alternatively, you should be able to do this:

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