如何更新一组实体?

发布于 2024-11-09 12:14:30 字数 294 浏览 6 评论 0原文

假设我有一个资源 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 技术交流群。

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

发布评论

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

评论(1

败给现实 2024-11-16 12:14:30

您可以使用批量请求一次性执行多个更新。请参阅 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.

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