在 C# 中向根 xelement 元素添加/创建命名空间

发布于 2024-07-21 18:17:13 字数 548 浏览 2 评论 0原文

我正在通过 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 技术交流群。

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

发布评论

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

评论(4

月隐月明月朦胧 2024-07-28 18:17:13
root.Add(new XElement(namespace + "foo", "str"))

编辑:经过进一步的搜索,这个问题似乎正在解决同样的问题。

root.Add(new XElement(namespace + "foo", "str"))

Edit: upon further SO searching, this question seems to be addressing the same issue.

拍不死你 2024-07-28 18:17:13

您向元素“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").

王权女流氓 2024-07-28 18:17:13
XNamespace myNamespace = XNamespace.Get("urn:APISchema.xsd");
root = new XElement(myNamespace + "Foo",
    new XElement(myNamespace + "version", "2"),
    new XElement(myNamespace + "foochild", "str"));

试一试,它应该对你有用。

XNamespace myNamespace = XNamespace.Get("urn:APISchema.xsd");
root = new XElement(myNamespace + "Foo",
    new XElement(myNamespace + "version", "2"),
    new XElement(myNamespace + "foochild", "str"));

Give that a shot, it should do the trick for you.

眼波传意 2024-07-28 18:17:13
XNamespace myNameSpace = XNamespace.Get("urn:APISchema.xsd");
        root = new XElement(myNameSpace + "Foo",
                                new XElement(myNameSpace + "foo", "str"));

IMO 这更容易阅读。 但正如理查德所说,您只需要添加名称空间。

XNamespace myNameSpace = XNamespace.Get("urn:APISchema.xsd");
        root = new XElement(myNameSpace + "Foo",
                                new XElement(myNameSpace + "foo", "str"));

IMO This is easier to read. But as Richard stated you just need to add the namespace.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文