Linq to XML - 命名空间

发布于 2024-08-19 11:12:18 字数 821 浏览 3 评论 0原文

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Book List</title>
</head>
<body>
<blist:books
xmlns:blist="http://www.wrox.com/books/xml">
<blist:book>
<blist:title>XSLT Programmers Reference</blist:title>
<blist:author>Michael Kay</blist:author>
</blist:book>
</blist:books>
</body>
</html>

从给定的 Xml 文档中,我想迭代所有 元素。

(IE) 我如何处理命名空间?

我尝试过

XNamespace blist = XNamespace.Get("http://www.wrox.com/books/xml");
XElement element = XElement.Load("Books.xml");
IEnumerable<XElement> titleElement =
            from el in element.Elements(blist + "books") select el;

,但枚举(titleElement)没有返回任何结果。

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Book List</title>
</head>
<body>
<blist:books
xmlns:blist="http://www.wrox.com/books/xml">
<blist:book>
<blist:title>XSLT Programmers Reference</blist:title>
<blist:author>Michael Kay</blist:author>
</blist:book>
</blist:books>
</body>
</html>

from the given Xml document,I want to iterate all <blist:books> elements.

(i.e)
How to i handle the namespace ?

i tried

XNamespace blist = XNamespace.Get("http://www.wrox.com/books/xml");
XElement element = XElement.Load("Books.xml");
IEnumerable<XElement> titleElement =
            from el in element.Elements(blist + "books") select el;

but the enumeration (titleElement) does not return any result.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

又爬满兰若 2024-08-26 11:12:18

你在这里有两个不同的问题。

  1. 您正在调用 Elements 方法,该方法返回您调用该方法的元素的直接子元素。由于 元素没有 direct 子元素,因此您不会获得任何结果。
  2. XML 区分大小写。您需要编写书籍,而不是书籍

另外,在任何 select el 中编写 from el 是没有意义的。除非您放置加法逻辑(例如 whereorderby 子句,或不平凡的 select),否则您应该只编写 不管怎样。

因此,您需要将 LINQ 查询替换为以下内容:

IEnumerable<XElement> titleElement = element.Descendants(blist + "books");

You have two different problems here.

  1. You're calling the Elements method, which returns the direct child elements of the element you call it on. Since the <html> element has no direct <blist:books> child elements, you aren't getting any results.
  2. XML is case sensitive. You need to write books, not Books.

Also, there's no point in writing from el in whatever select el. Unless you put addition logic (such as a where or orderby clause, or a non-trivial select), you should just write whatever.

Therefore, you need to replace your LINQ query with the following:

IEnumerable<XElement> titleElement = element.Descendants(blist + "books");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文