using System.Collections.Generic; using Znyc.Recruitment.Admin.Commons.Json; namespace Znyc.Recruitment.Admin.Commons.Tree { public static class JsTree { public static List JsTreeJson(this List data) { return JsTreeJson(data, 0, "").ToList(); } private static string JsTreeJson(List data, long ParentId, string blank) { List list = new List(); JsTreeModel jsTreeModel = new JsTreeModel(); List ChildNodeList = data.FindAll(t => t.parent == ParentId); string tabline = ""; if (!string.IsNullOrEmpty(ParentId.ToString())) { tabline = ""; } if (ChildNodeList.Count > 0) { tabline = tabline + blank; } foreach (JsTreeModel entity in ChildNodeList) { jsTreeModel = entity; jsTreeModel.children = JsTreeJson(data, entity.id, tabline).ToList(); list.Add(jsTreeModel); } return list.ToJson(); } } }