我需要读取Child Nodes标记的所有<Imovel>,问题是我的XML文件中有超过1(一个)<Imovel>标记,并且每个<Imovel>标记之间的区别是一个称为ID的属性。

这是一个例子

<Imoveis>
   <Imovel id="555">
      <DateImovel>2012-01-01 00:00:00.000</DateImovel>
      <Pictures>
          <Picture>
              <Path>hhhhh</Path>
          </Picture>
      </Pictures>
      // Here comes a lot of another tags
   </Imovel>
   <Imovel id="777">
      <DateImovel>2012-01-01 00:00:00.000</DateImovel>
      <Pictures>
          <Picture>
              <Path>tttt</Path>
          </Picture>
      </Pictures>
      // Here comes a lot of another tags
   </Imovel>
</Imoveis>

我需要读取每个<Imovel>标记的所有标记,并且在我对<Imovel>标记进行的每个验证的最后,我需要执行另一个验证。

所以,我想我需要做2(两)foreachforforeach,我对LINQ不太了解,但请遵循我的示例
XmlReader rdr = XmlReader.Create(file);
XDocument doc2 = XDocument.Load(rdr);
ValidaCampos valida = new ValidaCampos();

//// Here I Count the number of `<Imovel>` tags exist in my XML File
for (int i = 1; i <= doc2.Root.Descendants().Where(x => x.Name == "Imovel").Count(); i++)
{
    //// Get the ID attribute that exist in my `<Imovel>` tag
    id = doc2.Root.Descendants().ElementAt(0).Attribute("id").Value;

    foreach (var element in doc2.Root.Descendants().Where(x => x.Parent.Attribute("id").Value == id))
    {
       String name = element.Name.LocalName;
       String value = element.Value;
    }
}

但是,在我的foreach语句中,效果不是很好,因为我的<Picture>标记(她的父标记)没有ID属性。

有人可以帮我做这种方法吗?

最佳答案

您应该可以使用两个foreach语句来执行此操作:

foreach(var imovel in doc2.Root.Descendants("Imovel"))
{
  //Do something with the Imovel node
  foreach(var children in imovel.Descendants())
  {
     //Do something with the child nodes of Imovel.
  }
}

10-08 14:15