如何更新一组实体?
假设我有一个资源 A,其中包含一个名为“Bs”的导航属性,该属性指向一组资源 B。给定一个资源 A 的实例,我可以通过资源 A 的导航属性批量更新资源 B 组吗?
我知道我可以通过执行 PUT/ 来更新 B 的单个实例合并到/A(0)/B(1)。但是我可以将请求正文中的更新值数组执行 PUT/MERGE 到 /A(0)/B 吗?
Say I have resource A that contains a navigation property called "Bs" that points to a set of resource B. Given an instance of resource A, can I batch update the set of resource B through the navigation property of resource A?
I know that I can update a single instance of B by doing a PUT/MERGE to /A(0)/B(1). But can I do a PUT/MERGE with an array of updated values in my request body to /A(0)/B?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用批量请求一次性执行多个更新。请参阅 http://www.odata.org/developers/protocols/batch 了解协议, 描述。 WCF DS 客户端库内置了对批量请求的支持。其他客户端库也可能有它。
You can use batch request to perform multiple updates in one go. See http://www.odata.org/developers/protocols/batch for the protocol, description. The WCF DS client library has built-in support for batch request. Other client libraries might have it as well.