1

我需要的输出是

<ns1:collection>
<ns1:child1>value1</ns1:child3>
    <ns1:child2>value2</ns1:child3>
    <ns1:child3>value3</ns1:child3>
</ns1:collection>

我尝试通过下面的代码来做到这一点 - 但我得到一个例外 -...

如何在这个上添加命名空间?

XDocument xDoc = new XDocument( new XElement( "collection",
                 new XElement( "ns1:child1", value1 ),
                 new XElement( "ns1:child2", value2 ),
                 new XElement( "ns1:child3", value3 ) ) );

我也尝试使用

          XNamespace ns1 = "http://url/for/ns1";";

并做

           ( ns1 + "child1", value1 )

还是什么都没有

4

2 回答 2

1

将命名空间声明移动到虚构的父元素:

XDocument xDoc = new XDocument(new XElement("root",
            new XAttribute(XNamespace.Xmlns + "ns1", ns1),
                new XElement(ns1 + "collection",
                    new XElement(ns1 + "child1", value1),
                    new XElement(ns1 + "child2", value2),
                     new XElement(ns1 + "child3", value3))));
于 2013-10-22T06:07:01.997 回答
0
        XDocument xDoc = new XDocument(new XElement(ns1+"collection",
            new XAttribute(XNamespace.Xmlns+"ns1",ns1),
             new XElement(ns1+ "child1", value1),
             new XElement(ns1+"child2", value2),
             new XElement(ns1+"child3", value3)));
于 2013-10-20T14:13:32.630 回答