gpt4 book ai didi

dynamics-crm - 你能写一个 FetchXML 查询来得到 1 :many relationship?

转载 作者:行者123 更新时间:2023-12-01 14:40:52 31 4
gpt4 key购买 nike

是否可以编写一个获取根实体和多个子实体的 FetchXML 查询?我所能做的就是 1:1。

最佳答案

James Wood is correct . Fetch XML 是递​​归的,因此通过使用链接实体,您可以获得所需的信息。

例如,以下是有效的:

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true">
<entity name="account">
<attribute name="name" />
<attribute name="primarycontactid" />
<attribute name="telephone1" />
<attribute name="accountid" />
<order attribute="name" descending="false" />
<link-entity name="contact" from="parentcustomerid" to="accountid" alias="aj">
<attribute name="firstname" />
<attribute name="lastname" />
<attribute name="telephone1" />
<link-entity name="businessunit" from="businessunitid" to="owningbusinessunit" alias="ak">
<attribute name="name" />
<attribute name="address1_line1" />
<attribute name="address1_line2" />
<attribute name="address1_line3" />
<filter type="and">
<condition attribute="name" operator="not-null" />
</filter>
</link-entity>
</link-entity>
</entity>
</fetch>

如果您的问题确实是“是否可以编写一个获取SINGLE 根实体和多个子实体的 FetchXML 查询”,那么很遗憾,答案是否定的。但是,如果您能够处理根数据的重复项(例如使用 SSRS 报告的分组功能),那么您所需要的是完全可能的

关于dynamics-crm - 你能写一个 FetchXML 查询来得到 1 :many relationship?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2874860/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com