如何使用 Web 服务删除 Dynamics CRM 4 中的实体链接
如果我与 A 和 B 存在 1:N 关系。是否有一种 Web 服务方法可以用来删除 A 和 B[i] 之间的链接,而无需实际删除实体 B[i],如果两者的 Id都知道。顺便说一句,A 和 B 是自定义实体。 谢谢
If I have a 1:N relationship with A with B. Is there a web service method that I could use to remove the link between A and B[i] with out actually removing the entity B[i], if the Id of both are know. Btw A and B are custom entities.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 B[i] 中相应查找属性的
IsNull
和IsNullSpecified
属性设置为 true 并更新记录。无论如何,A 记录并不“知道”该链接。Set the
IsNull
andIsNullSpecified
properties of the respective lookup attribute in B[i] to true and update the record. The A record does not "know" about the link anyway.