0

我有一个包含以下内容的文件(myfile.xml)。我必须将所有内容(包括产品节点)都放在带有id=1.

<products>  
  <product id="1">
       <category>q</category>  
  </product>    
  <product id="2">      
       <category>w</category>    
  </product>   
  <product id="3">       
  <category>e</category>   
 </product>
</products>`

即结果应该是:

 <product id="1"> 
      <category>q</category>
  </product> 

我怎样才能做到这一点?

4

2 回答 2

1

在 Linq 中使用XPath

var root = XElement.Load("myfile.xml");  
root.XPathSelectElements( "/products/product[@id=1]");
于 2012-05-16T15:46:28.200 回答
0
var root = XElement.Load("path to the file");
var node = root.Descendants("product").FirstOrDefault(e=>e.Attribute("id").Value == "1");
于 2012-05-16T12:07:28.340 回答