如何改进循环Xdocument

时间:2015-07-07 11:12:46

标签: c# linq linq-to-xml

我正在做一个关于如何用c#和linq读取.xml文件的例子,我读过它,但我觉得代码不好。

欢迎任何建议或解释如何做得更好。

XML:

<file>
 <order>
  <products>
    <product>
     <id>123</id>
     <Description>Camera</Description>
     <seller>Website</seller>
    </product>
    <product></product>
    <product></product>
  </products>
 </order>
</file>

这是我的代码,我想改进部分来进行描述,这种方式并不好看。

var reader = XDocument.Load("file.xml");
var listProdcutsNodes = reader.Element("file").Element("order").Element("products").Elements("product").Select(input => input.Elements()).ToList();
var description = "";
foreach (var listProdcutsNode in listProdcutsNodes)
{
    var isproduct = false;
    foreach (var xElement in listProdcutsNode)
    {
        if (xElement.Name == "id" && xElement.Value == "123")
        {
            isproduct = true;
        }

        if (isproduct && xElement.Name == "Description")
        {
            description = xElement.Value;

        }

    }

    isproduct = false;
}

2 个答案:

答案 0 :(得分:1)

将所有节点作为列表并迭代它们在您的情况下是多余的。

你可以很容易地得到这样的描述:

string myID = "123";
var description = reader.XPathSelectElements("/file/order/products/product")
                .Where(x => x.Element("id").Value == myID)
                .Select(x => x.Element("Description").Value).FirstOrDefault();

答案 1 :(得分:1)

您可以使用Linq,或者只使用常规XPath。 这是xml的xpath:

//product[./*[text()='123']]/Description/text()