列表上的 ForEach 扩展方法 - 如何获取对象?
所以我有这样的内容:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者,您应该能够执行以下操作:
Alternatively, you should be able to do this: