Getting data from xml by attribute vlaue

守給你的承諾、 提交于 2019-12-12 04:08:52

问题


I have a file with the following content (myfile.xml). I have to get all content coming under (including product node) a product with 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>`

i.e. the result should be :

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

How can I do this?


回答1:


var root = XElement.Load("path to the file");
var node = root.Descendants("product").FirstOrDefault(e=>e.Attribute("id").Value == "1");



回答2:


using XPath in Linq

var root = XElement.Load("myfile.xml");  
root.XPathSelectElements( "/products/product[@id=1]");


来源:https://stackoverflow.com/questions/10617994/getting-data-from-xml-by-attribute-vlaue

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!