我想要发生的是我想把ID等于ParentID的元素放在里面?因此,就像在我的示例中,其 ParentId=1 的组应该在其 Id=1 的组内我怎么可能做到这一点?好迷茫。。
到目前为止,这是我的代码:
XElement xroot = new XElement("Root");
XElement xnavigations = null;
XElement xmenus = null;
foreach (DataRow navigations in GetNavigationSets().Rows)
{
xnavigations = new XElement("Group",
new XElement("GroupName", navigations["name"].ToString())
);
xnavigations.SetAttributeValue("Id", navigations["id"].ToString());
xnavigations.SetAttributeValue("ParentId", navigations["parent_id"].ToString());
foreach (DataRow menus in GetMenusInNavigationSetByNavigation(int.Parse(navigations["id"].ToString())).Rows)
{
foreach (DataRow menu in GetMenuById(int.Parse(menus["menu_id"].ToString())).Rows)
{
xmenus = new XElement("Menu",
new XElement("Name", menu["name"].ToString()),
new XElement("Price", menu["price"].ToString()),
new XElement("Description", menu["description"].ToString())
);
xnavigations.Add(xmenus);
}
}
xroot.Add(xnavigations);
}
xroot.Save("main.xml");
新输出: