Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Select more then one node from XML using LINQ

I have such XML

<root>
    <content>
        ....
    </content>
    <index>
        ....
    </index>
    <keywords>
        ....
    </keywords>
</root>

But I need to select just and nodes.

<content>
    ....
</content>
<index>
    ....
</index>

I found out how to select just one node.

XElement Content = new XElement("content", from el in xml.Elements() select el.Element("content").Elements());

How can I get both nodes?

like image 960
podeig Avatar asked Feb 27 '23 01:02

podeig


2 Answers

var elements = 
    from element in xml.Root.Elements()
    where element.Name == "content" ||
          element.Name == "index"
    select element;
var newContentNode = new XElement("content", elements);
like image 117
Darin Dimitrov Avatar answered Mar 07 '23 06:03

Darin Dimitrov


Once you have the xml file loaded, you can get all the content nodes through:

var cons = from con in xmlFile.Descendants("content");

and similarly you can get the index nodes as:

var idxs = from idx in xmlFile.Descendants("index")

I don't think you can query two nodes using one query string.

like image 25
Abdel Raoof Olakara Avatar answered Mar 07 '23 05:03

Abdel Raoof Olakara