指定 XML 架构中 xs:decimal 的小数位数

发布于 2024-11-04 20:07:01 字数 141 浏览 4 评论 0原文

  1. 有没有办法指定 xs:decimal 在 XML 模式中应具有的小数位数?

  2. 是否有任何方法可以使用 .NET 的 Xml*** 属性来控制它?

  1. Is there a way to specify the amount of decimal places an xs:decimal should have in an XML schema?

  2. Is there any way to control that using .NET's Xml*** attributes?

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

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

发布评论

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

评论(1

总攻大人 2024-11-11 20:07:01

您可以创建扩展小数的自定义类型,并指定 fractionDigits 中的位数,如下所示:

<xs:simpleType name="twoPlacesDecimal" id="twoPlacesDecimal">
    <xs:restriction base="xs:decimal">
        <xs:fractionDigits fixed="true" value="2" />
    </xs:restriction>
</xs:simpleType>

您可以使用 XmlAttribute(DataType = "value") 指定属性的数据类型code> 但不幸的是这仅支持内置数据类型。根据我对源代码的阅读,如果您包含自定义数据类型,您将得到一个异常。

You can create a custom type that extends decimal and specify the number of digits in fractionDigits like this:

<xs:simpleType name="twoPlacesDecimal" id="twoPlacesDecimal">
    <xs:restriction base="xs:decimal">
        <xs:fractionDigits fixed="true" value="2" />
    </xs:restriction>
</xs:simpleType>

You can specify the data type for a property using XmlAttribute(DataType = "value") but unfortunately this only supports built-in data types. From my reading of the source, if you include a custom data type you'll get an exception.

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