c#通用递归生成无限层级树
NewsType结构:
Id
ParentId
Name
children(List<NewsType>)
public void LoopToAppendChildren(List<NewsType> all, NewsType curItem) { var subItems = all.Where(ee => ee.ParentId==curItem.Id).ToList(); curItem.children = new List<NewsType>(); curItem.children.AddRange(subItems); foreach (var subItem in subItems) { LoopToAppendChildren(all, subItem);//新闻1.1 } }
//通用 ParentId,Id,children 用了反射效率不高
public void LoopToAppendChildren<T>(List<T> all, T curItem, string parentIdName = "ParentId", string idName = "Id", string childrenName = "children")
{
var subItems = all.Where(ee => ee.GetType().GetProperty(parentIdName).GetValue(ee, null).ToString() == curItem.GetType().GetProperty(idName).GetValue(curItem, null).ToString()).ToList(); //新闻1
curItem.GetType().GetProperty(childrenName).SetValue(curItem, subItems);
foreach (var subItem in subItems)
{
LoopToAppendChildren(all, subItem);//新闻1.1
}
}
调用: //实例化一个根节点 NewsType rootRoot = new NewsType(); rootRoot.Id = 0; rootRoot.ParentId = 0; rootRoot.Name="根节点"; LoopToAppendChildren(dc.NewsType.ToList(), rootRoot);
原文地址:http://www.cnblogs.com/xuejianxiyang/p/5027280.html
作者:xuejianxiyang
出处:http://xuejianxiyang.cnblogs.com
关于作者:Heaven helps those who help themselves.
本文版权归原作者和博客园共有,欢迎转载,但未经原作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。