如何按属性对XDocument进行排序?

时间:2010-02-09 19:52:52

标签: c# sorting linq-to-xml

我有一些XML

<Users>
    <User Name="Z"/>
    <User Name="D"/>
    <User Name="A"/>
</User>

我想按名称对其进行排序。我使用XDocument加载该xml。如何查看按名称排序的xml?

2 个答案:

答案 0 :(得分:13)

如果不是XmlDocument,可以使用LINQ to Xml进行排序

XDocument input = XDocument.Load(@"input.xml");
XDocument output = new XDocument(
    new XElement("Users",
        from node in input.Root.Elements()
        orderby node.Attribute("Name").Value descending
        select node));

答案 1 :(得分:0)

XDocument xdoc = new XDocument(
    new XElement("Users",
        new XElement("Name", "Z"),
        new XElement("Name", "D"),
        new XElement("Name", "A")));

var doc = xdoc.Element("Users").Elements("Name").OrderBy(n => n.Value);
XDocument doc2 = new XDocument(new XElement("Users", doc));