XDocument,XElement:Sequence不包含匹配元素

Pri*_*esh 3 c# xml asp.net xelement linq-to-xml

使用C#搜索xml文件的元素,但获取以下内容

错误:序列不包含匹配元素

    XNamespace siteNM = "http://schemas.microsoft.com/AspNet/SiteMap-File-1.0";
            XDocument sitemap = new XDocument
                (new XDeclaration("1.0", "UTF-8", null), 
                     new XElement(siteNM + "siteMap", 
                          new XElement(siteNM + "siteMapNode", new XAttribute("title", "Home"), new XAttribute("url", "home.aspx"), new XAttribute("description", "Home"))
                                 ));
    XElement x = sitemap.Root;
Run Code Online (Sandbox Code Playgroud)

我尝试了两种搜索元素的方法,但都给了我同样的错误.

第一种方式:

XElement child = x.Descendants("siteMapNode").Where(el => el.Attribute("title") != null && el.Attribute("title").Value == "Home").First();
Run Code Online (Sandbox Code Playgroud)

第二种方式:

XElement child1 = x.Descendants("siteMapNode").First(el => (string)el.Attribute("title") == "Home");
Run Code Online (Sandbox Code Playgroud)

请帮我.非常感谢..

Rap*_*aus 5

缺少命名空间

XElement child = x.Descendants(siteNM + "siteMapNode")
                .First(el => el.Attribute("title") != null && el.Attribute("title").Value == "Home");
Run Code Online (Sandbox Code Playgroud)