0

我有以下 XML:

<!--Gaffer Tape Regions--> 
  <masks>
   <mask name="Serato">
    <rectangle>
      <xPosition>100</xPosition>
      <yPosition>100</yPosition>
      <height>100</height>
      <width>100</width>
     </rectangle>
     <rectangle>
        <xPosition>500</xPosition>
        <yPosition>500</yPosition>
        <height>100</height>
        <width>100</width>
    </rectangle> 
  </mask>   
  <mask name="Traktor">
    <rectangle>
      <xPosition>180</xPosition>
      <yPosition>70</yPosition>
      <height>200</height>
      <width>300</width>
     </rectangle>
     <rectangle>
        <xPosition>500</xPosition>
        <yPosition>500</yPosition>
        <height>50</height>
        <width>160</width>
    </rectangle>   
  </mask>
 </masks>

我想检索名称为“Serato”的掩码元素下的所有矩形元素。

在 Linq to XML 中执行此操作的最佳方法是什么?

编辑:添加了不起作用的代码

目前正在尝试这个:

XDocument maskData = XDocument.Load(folderPath + @"\masks.xml");


            var masks =
                    from ma in maskData.Elements("mask")
                    where ma.Attribute("name").Value == "Serato"
                    from rectangle in ma.Elements("rectangle")
                    select rectangle;

但是掩码查询返回 null。

4

2 回答 2

2
var xml = XElement.Parse(s);
var rectangles = 
    from mask in xml.Elements("mask")
    where mask.Attribute("name").Value == "Serato"
    from rectangle in mask.Elements("rectangle")
    select rectangle;
于 2013-05-15T22:42:11.797 回答
1

使用 LINQ to XML 查询时,Root需要包含节点。如果您包含 Root 节点,您编辑的查询将起作用:

var masks =
    from ma in maskData.Root.Elements( "mask" ) // <-- notice .Root.
    where ma.Attribute( "name" ).Value == "Serato"
    from rectangle in ma.Elements( "rectangle" )
    select rectangle;

或使用方法链:

var rect = maskData.Root.Elements( "mask" )
        .Where( x => x.Attribute( "name" ).Value == "Serato" )
        .Elements( "rectangle" );
于 2013-05-16T00:17:19.283 回答