LINQ xml查找节点返回null

时间:2018-01-15 10:14:28

标签: c# xml linq

我尝试使用XDocument类解析xml文件,条件是如果子节点与给定字符串匹配,则选择其父节点。

<SalesQuotes xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.some.com/version/1">
  <Pagination>
    <NumberOfItems>2380</NumberOfItems>
    <PageSize>200</PageSize>
    <PageNumber>1</PageNumber>
    <NumberOfPages>12</NumberOfPages>
  </Pagination>
  <SalesQuote>
    <Guid>825634b9-28f5-4aa7-98e7-5e4a4ed6bc6a</Guid>
    <LastModifiedOn>2018-01-09T12:23:56.6133445</LastModifiedOn>
    <Comments>Please note:
installation is not included in this quote
    </Comments>
  </SalesQuote>
</SalesQuotes>

我尝试使用

var contents = File.ReadAllText(path: "test1.xml");
var doc = XDocument.Parse(contents);
var root = doc.Root;
var sq = root.Elements("SalesQuote");//return null

var theQuote = root.Elements("SalesQuote").Where(el => el.Element("Guid").Value == "825634b9-28f5-4aa7-98e7-5e4a4ed6bc6a");//return null

var theAlternativeQuote =
            from el in doc.Descendants("SalesQuote").Elements("Guid")
            where el.Value == "825634b9-28f5-4aa7-98e7-5e4a4ed6bc6a"
            select el;//return null

我似乎无法找到错误。

非常感谢任何帮助!感谢。

3 个答案:

答案 0 :(得分:6)

您忽略了命名空间兄弟。

请删除XML中的xmlns属性或尝试此操作:

var contents = File.ReadAllText("XMLFile1.xml");
var doc = XDocument.Parse(contents);
var root = doc.Root;
XNamespace ns = "http://api.some.com/version/1";
var sq = root.Descendants(ns + "SalesQuotes"); //return null

var theQuote = root.Elements(ns + "SalesQuote")
    .Where(el => el.Element(ns + "Guid").Value == "825634b9-28f5-4aa7-98e7-5e4a4ed6bc6a"); //return null

var theAlternativeQuote =
    from el in doc.Descendants(ns + "SalesQuote").Elements(ns + "Guid")
    where el.Value == "825634b9-28f5-4aa7-98e7-5e4a4ed6bc6a"
    select el; //return null

答案 1 :(得分:1)

如果您不太关心保留当前的实现,可以考虑使用Typed DataSet并将XML加载到完全类型化的结构化对象中。

使用Linq查询这些对象比我在当前实现中看到的更直接。

你可能也觉得这很有用: SO Question: Deserialize XML Document to Objects

答案 2 :(得分:1)

哎呀,您错过了可以使用document.Root.GetDefaultNamespace()

抓取的命名空间
    // Load
    var document = XDocument.Parse(xml);
    var xmlns = document.Root.GetDefaultNamespace();

    // Find
    var query = from element in document
                    .Descendants(xmlns + "SalesQuote")
                    .Elements(xmlns + "Guid")
                where element.Value == "825634b9-28f5-4aa7-98e7-5e4a4ed6bc6a"
                select element;