为什么提交到 OData Edm.Decimal 类型时会出现错误?
我正在尝试向 OData 服务提交一些 JSON。根据 $metadata,它需要这种类型:
<Property Name="curClaimValue" Type="Edm.Decimal" Nullable="true" Precision="19" Scale="4"/>
这是我的 JSON 的一部分:
..."curClaimValue":654321...
这是错误消息:
处理请求流时出错。将属性“curClaimValue”的请求负载中的值转换为“Decimal”类型(该属性的预期类型)时遇到错误。
如果您需要更多信息,请告诉我。
谢谢, 斯蒂芬
I'm trying to submit some JSON to an OData service. According to the $metadata, it expects this type:
<Property Name="curClaimValue" Type="Edm.Decimal" Nullable="true" Precision="19" Scale="4"/>
This is part of my JSON:
..."curClaimValue":654321...
And this is the error message:
Error processing request stream. Error encountered in converting the value from request payload for property 'curClaimValue' to type 'Decimal', which is the property's expected type.
Let me know if you need more information.
Thanks,
Stephen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来我必须将数字用引号引起来。
Seems I have to wrap the number in quotes.