通过名称空间前缀访问名称空间
MSDN:
使用 LINQ 的优点之一 XML 与 C# 的区别在于您不必 使用 XML 前缀。当 LINQ 到 XML 加载或解析 XML 文档,每个 XML 前缀被解析为它的 相应的 XML 命名空间。后 当您处理文档时 使用命名空间,你几乎 始终通过访问命名空间 命名空间 URI,而不是通过 命名空间前缀。当开发人员工作时 在 LINQ to XML 中使用 XML 名称 始终使用完全合格的 XML 名称(即 XML 命名空间和 本地名称)。
a) 嗯,上面的引用是否声称在 Linq to XML 中开发人员始终使用完全限定的 XML 名称,因此始终通过其命名空间 URI 而不是通过命名空间前缀访问命名空间?
但是下面的代码不是通过前缀而不是命名空间 URI 访问命名空间(并且我们不能也认为在这个示例中我们没有使用完全限定的 XML 名称):
XNamespace aw = "http://www.adventure-works.com";
IEnumerable<XElement> c1 =
from el in root.Elements(aw + "Child")
select el;
b) 为什么在 Linq to XML 中访问通过命名空间 URI 访问命名空间比通过命名空间前缀访问它们更好?
谢谢
编辑:
您认为您的代码示例为何使用 前缀?
我不知道为什么我认为上面的代码使用了命名空间前缀。
1) 有没有办法通过前缀而不是命名空间 URI 访问命名空间(例如,当尝试使用 XElement.Elements(Xname)
方法查找子元素时)?
2)除了具有默认命名空间和同一命名空间的附加命名空间声明的文档之外,是否还有其他我应该注意的示例,当文档被序列化回来时,输入文档中的前缀可能不会被保留?
MSDN:
One of the advantages of using LINQ to
XML with C# is that you do not have to
use XML prefixes. When LINQ to XML
loads or parses an XML document, each
XML prefix is resolved to its
corresponding XML namespace. After
that, when you work with a document
that uses namespaces, you almost
always access the namespaces through
the namespace URI, and not through the
namespace prefix. When developers work
with XML names in LINQ to XML they
always work with a fully-qualified XML
name (that is, an XML namespace and a
local name).
a) Uhm, is the above quote claiming that in Linq to XML developers always work with fully-qualified XML names and thus always access namespaces through their namespace URI and not through namespace prefix?
But doesn't the following code access namespace through the prefix and not namespace URI ( and couldn't we also argue that in this example we aren't working with a fully qualified XML name ):
XNamespace aw = "http://www.adventure-works.com";
IEnumerable<XElement> c1 =
from el in root.Elements(aw + "Child")
select el;
b) why would in Linq to XML accessing namespaces through namespace URI be preferable to accessing them through a namespace prefix?
thank you
EDIT:
Why do you think your code sample uses
a prefix?
I have no idea why I thought the above code uses a namespace prefix.
1) is there a way to access namespace through the prefix and not namespace URI ( for example, when trying to find child elements using XElement.Elements(Xname)
method )?
2) Besides a document having both a default namespace and an additional namespace declaration for the same namespace, are there any other examples I should be aware of where prefixes in input document may not get preserved when document is serialized back?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您认为您的代码示例为什么使用前缀?它使用
XNamespace
对象,该对象表示 LINQ to XML 对象模型和 API 中命名空间的 XML 概念。当然,为了简化代码,XNamespace 存储在一个具有短名称的变量中,并且该变量用于构造 XName 作为Elements
方法的参数,但我不知道任何前缀如何使用或如何使用任何方式的代码取决于 XML 输入中前缀的使用。这是否回答了您问题的 a) 部分?
至于 b) 部分,在具有名称空间的 XML 中,语义上重要的是元素或属性所属的名称空间,前缀并不重要。 在语义上都没有任何区别
因此,无论您编写或
或 ,
并且使用 LINQ to XML 在这三个示例中选择任何元素节点对于所有三个示例都是相同的,您只需定义一个 XNamespace 对象
,然后就可以使用例如 Descendants (ns1 + "foo") 访问命名空间
http://example.com/ns1
中具有本地名称foo
的元素。这就是主要优点,您编写代码来根据元素或属性所属的命名空间来选择元素或属性,而不是根据某些输入文档中使用的任何前缀。
LINQ to XML 的前缀“无知”肯定存在缺点,例如,如果您有一个具有默认命名空间的文档,但同一命名空间有一个附加命名空间声明,那么命名空间声明的顺序似乎决定了 LINQ to XML 如何序列化该文档后退。下面是一个示例,演示了:
如果我们有两个 X(HT)ML 输入文档 XMLFile1.xml
和 XMLFile2.xml
,则 VS 2010/.NET 4.0 的输出为
因此,这肯定是 LINQ to XML 对象模型的一个缺点存储元素或属性节点的任何前缀,在这种情况下,当您加载并保存回来时,输入文档中的前缀可能不会被保留。
Why do you think your code sample uses a prefix? It uses an
XNamespace
object which is the representation of the XML concept of a namespace in the LINQ to XML object model and API. Of course for ease of code the XNamespace is stored in a variable with a short name and that variable is used to construct an XName as the argument to theElements
method but I don't see how any prefix is used or how the code in any way depends on the use of prefixes in the XML input.Does that answer part a) of your question?
As for part b), what matters semantically in XML with namespaces is the namespace an element or attribute belongs to, prefixes don't matter. So it does not make any difference semantically whether you write
or
or
And selecting any element nodes in those three samples with LINQ to XML is the same for all three samples, you simply define an XNamespace object
and then you can use e.g.
Descendants(ns1 + "foo")
to access elements with local namefoo
in the namespacehttp://example.com/ns1
.So that is the main advantage, you write code to select elements or attributes based on the namespace they belong to, not based on any prefix used in certain input document.
There are certainly shortcomings in LINQ to XML's prefix "ignorance", for instance if you have a document with a default namespace but an additional namespace declaration for the same namespace then the order of the namespace declaration seems to decide how LINQ to XML serializes the document back. Below is a sample demonstrating that:
If we have two X(HT)ML input documents XMLFile1.xml
and XMLFile2.xml
then the output with VS 2010/.NET 4.0 is
So that certainly is a disadvantage of the LINQ to XML object model not storing any prefixes of element or attribute nodes, in that case the prefixes in the input document might not be preserved when you load and save back.