所以有一个模型对象TreeNode
:
Public Class TreeNode{
Public int NodeId {get;set;}
Public String Name {get;set;}
Public int ParentId {get;set;}
Public TreeNode Parent {get;set;}
Public List<TreeNode> Children {get;set;}
}
该结构由使用邻接列表模式的数据库提供支持。我正在使用带有AutoMapper的 WCF 服务来填充我的模型类。
我想做这样的事情:
public static void ConfigureMappings()
{
Mapper.CreateMap<TreeNodeDto, Taxonomy>()
.AfterMap((s, d) =>
{
//WCF service calls to get parent and children
d.Children = Mapper.Map<TreeNodeDto[], TreeNode[]>(client.GetTreeChildren(s)).ToList();
d.Parent = Mapper.Map<TreeNodeDto, TreeNode>(client.GetTreeParent(s));
});
}
但显然这会导致无限循环(如果我只映射孩子,它确实有效)。有什么方法可以使用 AutoMapper 填充我的树结构?