鉴于以下XDocument
,初始化为变量xDoc
:
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition">
<ReportSection>
<Width />
<Page>
</ReportSections>
</Report>
我有一个嵌入在XML文件中的模板(我们称之为body.xml
):
<Body xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition">
<ReportItems />
<Height />
<Style />
</Body>
我希望将其作为<ReportSection>
的孩子。问题是如果通过XElement.Parse(body.xml)
添加它,它会保留命名空间,即使我认为应该删除命名空间(没有重复自身的点 - 已在父节点上声明)。如果我没有指定名称空间,它会改为放置一个空命名空间,因此它变为<Body xmlns="">
。
有没有办法将XElement
正确合并到XDocument
?我想在xDoc.Root.Element("ReportSection").AddFirst(XElement)
之后得到以下输出:
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition">
<ReportSection>
<Body>
<ReportItems />
<Height />
<Style />
</Body>
<Width />
<Page>
</ReportSections>
</Report>
答案 0 :(得分:5)
我不确定为什么会发生这种情况,但从body元素中删除xmlns
属性似乎有效:
var report = XDocument.Parse(
@"<Report xmlns=""http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition"">
<ReportSection>
<Width />
<Page />
</ReportSection>
</Report>");
var body = XElement.Parse(
@"<Body xmlns=""http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition"">
<ReportItems />
<Height />
<Style />
</Body>");
XNamespace ns = report.Root.Name.Namespace;
if (body.GetDefaultNamespace() == ns)
{
body.Attribute("xmlns").Remove();
}
var node = report.Root.Element(ns + "ReportSection");
node.AddFirst(body);