为什么我会收到额外的 xmlns=""使用 LINQ to XML?
我正在使用 LINQ to XML 生成一段 XML。一切都很好,除了我以某种方式添加了一些空的命名空间声明。有人知道我做错了什么吗?这是我的代码
private string SerializeInventory(IEnumerable<InventoryInformation> inventory)
{
var zones = inventory.Select(c => new {
c.ZoneId
, c.ZoneName
, c.Direction
}).Distinct();
XNamespace ns = "http://www.dummy-tmdd-address";
XNamespace xsi = "http://www.w3.org/2001/XMLSchema-instance";
var xml = new XElement(ns + "InventoryList"
, new XAttribute(XNamespace.Xmlns + "xsi", xsi)
, zones.Select(station => new XElement("StationInventory"
, new XElement("station-id", station.ZoneId)
, new XElement("station-name", station.ZoneName)
, new XElement("station-travel-direction", station.Direction)
, new XElement("detector-list"
, inventory.Where(p => p.ZoneId == station.ZoneId).Select(plaza =>
new XElement("detector", new XElement("detector-id", plaza.PlazaId)))))));
xml.Save(@"c:\tmpXml\myXmlDoc.xml");
return xml.ToString();
}
这是生成的 xml。我希望它能够正确渲染?浏览器可能会隐藏标签。
<InventoryList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.dummy-tmdd-address">
<StationInventory xmlns="">
<station-id>999</station-id>
<station-name>Zone 999-SEB</station-name>
<station-travel-direction>SEB</station-travel-direction>
<detector-list>
<detector>
<detector-id>7503</detector-id>
</detector>
<detector>
<detector-id>2705</detector-id>
</detector>
</detector-list>
</StationInventory>
</InventoryList>
请注意第一个子元素中的空命名空间声明。有什么想法可以解决这个问题吗?任何提示当然不胜感激。
谢谢大家。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于以下位置缺少命名空间:
这隐式指示 StationInvetory 元素的空命名空间“”。您应该这样做:
请注意,您必须对您创建的位于
ns
命名空间中的任何元素执行此操作。 XML 序列化程序将确保根据范围使用正确的名称空间前缀来限定元素。Because of the missing namespace in:
This implicitly indicates the empty namespace "" for the StationInvetory element. You should do:
Note that you must do this for any element you create that lives in the
ns
namespace. The XML serializer will make sure to qualify elements with the correct namespace prefix according to scope.想补充彼得·利勒沃德的答案。
XML 属性在其 XName 中不需要命名空间
除了将字符串转换为 Xname 之外:
在将 "{myNamespaseName}nodeName" 转换为 XName 时,{myNamespaseName} 将转换为 XNamespase
另外,查看简化构造函数方法阅读的代码结构:
或者
Want to add to Peter Lillevold's answer.
XML Attributes don't require namespase in their XName
In addition to casting string to Xname:
The {myNamespaseName} will be casted to XNamespase on casting of "{myNamespaseName}nodeName" to XName
Also, look to the code structure that simplifies reading of the constructor method:
or