C# Linq to XML query

后端 未结 3 1884
旧巷少年郎
旧巷少年郎 2021-01-21 16:20

  
    
      
        
        
        <         


        
3条回答
  •  温柔的废话
    2021-01-21 16:59

    From your sample data I think you want

    //from e in xml.Descendants("Animals").Descendants("Tab").Elements("Dogs")
    from e in xml.Descendants("Animals").Elements("Tab").Descendants("Dogs")
    

    And in the same line, Descendants("Animals") could be Elements("Animals") if you want to enforce the structure.

    For the rest your query looks OK.

提交回复
热议问题