我有一个方法可以将子集合映射到父集合中的适当父集合
public static void ApplyParentChild<TParent, TChild, TId>(
this IEnumerable<TParent> parents, IEnumerable<TChild> children,
Func<TParent, TId> id, Func<TChild, TId> parentId,
Action<TParent, TChild> action
)
{
var lookup = parents.ToDictionary(id);
foreach (var child in children)
{
TParent parent;
if (lookup.TryGetValue(parentId(child), out parent))
action(parent, child);
}
}
&如果我调用如下方法(项目中包含阶段列表),这将是可行的
projects.ApplyParentChild(phases, p => p.ProjectId, c => c.ProjectId, (p, c) => p.ProjectPhases.Add(c));
但是我经常遇到这样的情况,即我有一个阶段包含项目参考。所以那个时候我称之为
phases.ApplyParentChild(projects, p => p.ProjectId, c => c.ProjectId, (p, c) => p.project=c);
这失败了。这是因为parents.ToDictionary(id)
无法获取唯一标识符并返回错误“已添加具有相同键的项目”。
我该如何处理这个问题?我不是 linq 大师。谁能帮我吗 ?