我需要阅读Child Nodes
我的所有<Imovel>
标签,问题是我的 XML 文件中有多个(一个)<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 (两个)foreach
或 afor
和 a foreach
,我不太了解,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 属性。
有人可以帮我做这个方法吗?