使用 XmlSerializer 获取列表时可以省略干预级别吗?

发布于 2024-10-17 03:25:09 字数 583 浏览 3 评论 0原文

我的问题最好用一个简单的例子来描述。考虑这样的 2 个类:

class Order {
  [XmlAttribute] int orderId;
  [XmlAttribute] int customerId;
  List<OrderItem> items;
}

class OrderItem {
  [XmlAttribute] int partCode;
  [XmlAttribute] int quantity;
}

使用 XmlSerializer,这将序列化为这样的内容:

<order orderId="...", customerId="..." >
  <Items>
    <orderItem partCode="..." quantity="..." />
  </Items>
</order>

我想要做的是删除;级别,以便元素直接位于相应的下面。

有什么办法可以做到这一点吗?

my question is best described by a simple example. consider 2 classes like this:

class Order {
  [XmlAttribute] int orderId;
  [XmlAttribute] int customerId;
  List<OrderItem> items;
}

class OrderItem {
  [XmlAttribute] int partCode;
  [XmlAttribute] int quantity;
}

using XmlSerializer, this will serialize to something like this:

<order orderId="...", customerId="..." >
  <Items>
    <orderItem partCode="..." quantity="..." />
  </Items>
</order>

what I want to do is remove the <Items> level so that the <orderItem> elements go straight underneath the corresponding <order>

is there any way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

春风十里 2024-10-24 03:25:09

使用 XmlElement 属性:使用

class Order {
  [XmlAttribute] int orderId;
  [XmlAttribute] int customerId;
  [XmlElement]
  List<OrderItem> items;
}

此属性,您还可以为 OrderItem 对象指定自定义元素名称,甚至为 的每个子类型指定不同的元素名称订单项目

Use the XmlElement attribute:

class Order {
  [XmlAttribute] int orderId;
  [XmlAttribute] int customerId;
  [XmlElement]
  List<OrderItem> items;
}

With this attribute you can also specify a custom element name for the OrderItem objects, or even a different element name for each sub-type of OrderItem

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