在 C# 中向根 xelement 元素添加/创建命名空间
我正在通过 xelement 使用 linq.xml 创建 xml。 我的雇佣关系是这样的
我想要这个模式 2 斯特
这是我的模式生成代码
XNamespace ns = XNamespace.Get("urn:APISchema.xsd");
root = new XElement(ns + "Foo");
root.Add(new XElement("version", "2"));
root.Add(new XElement("foochild", "str"));
,但生成的模式知道
<Foo xlmns="urn:APISchema.xsd">
<version xlmns="">2</version>
<foochild xlmns="">str</foochild>
</Foo>
为什么会出现这样的问题,为什么它将 xlmn 附加到根子级......?
i am creating xml using linq.xml through xelement.
my hirerachy is some thing like this
I want this schema
2
str
here is my code for schema generation
XNamespace ns = XNamespace.Get("urn:APISchema.xsd");
root = new XElement(ns + "Foo");
root.Add(new XElement("version", "2"));
root.Add(new XElement("foochild", "str"));
but the resultant schema is
<Foo xlmns="urn:APISchema.xsd">
<version xlmns="">2</version>
<foochild xlmns="">str</foochild>
</Foo>
any idea why such problem why it is appending xlmn to root childs...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
编辑:经过进一步的搜索,这个问题似乎正在解决同样的问题。
Edit: upon further SO searching, this question seems to be addressing the same issue.
您向元素“usr:APISchema.xsd::Foo”添加了两个带有 oa 命名空间的元素。 生成的 XML 是预期的 XML。 您必须将命名空间添加到每个添加的元素:
root.Add(new XElement(namespace + "foochild")
。You added to the element 'usr:APISchema.xsd::Foo' two elements w/o a namespace. The resulted XML is the expected one. You must add the namespace to each added element:
root.Add(new XElement(namespace + "foochild")
.试一试,它应该对你有用。
Give that a shot, it should do the trick for you.
IMO 这更容易阅读。 但正如理查德所说,您只需要添加名称空间。
IMO This is easier to read. But as Richard stated you just need to add the namespace.