你能写一个FetchXML查询来获得1:很多关系吗?

时间:2010-05-20 14:49:13

标签: dynamics-crm fetchxml

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

4 个答案:

答案 0 :(得分:6)

James Wood is correct。获取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报告的分组功能),那么您完全可能需要

答案 1 :(得分:5)

除非我误解了这个问题,否则这很可能。

例如,您希望查找与给定帐户相关的所有联系人。这通过与客户联系的父客户查询以Crm表示。

enter image description here

<fetch mapping="logical" count="100" version="1.0">
    <entity name="account">
        <attribute name="name" />
        <link-entity name="contact" from="parentcustomerid" to="accountid">
            <attribute name="fullname" />
        </link-entity>
    </entity>
</fetch>

它为您提供了如下所示的结果集:

<resultset morerecords="0" paging-cookie="&lt;cookie page=&quot;1&quot;&gt;&lt;accountid last=&quot;{E704FAD6-2D4B-E111-9FED-00155D828444}&quot; first=&quot;{AD912122-6B3C-E111-9B37-00155D828444}&quot; /&gt;&lt;/cookie&gt;">
    <result>
        <name>RGD Mining Inc</name>
        <accountid>{E704FAD6-2D4B-E111-9FED-00155D828444}</accountid>
        <accountid.fullname>Bill Miner</accountid.fullname>
    </result>
    <result>
        <name>RGD Mining Inc</name>
        <accountid>{E704FAD6-2D4B-E111-9FED-00155D828444}</accountid>
        <accountid.fullname>Green</accountid.fullname>
    </result>
</resultset>

答案 2 :(得分:3)

不,这是不可能的。

答案 3 :(得分:0)

我很高兴地报告说这是可能的。我有一个适合我的解决方案。

唯一需要注意的是,如果您有多个子帐户,您将获得父项的多个结果。例如:

parent 1: child 1
parent 2: child 1
parent 2: child 2

这意味着您必须通过排序函数运行结果,以获取多维数组中父项下的所有子项,或者将所有帐户作为平面数组中的唯一条目。

此外,这只会降低一个级别。如果您的层次结构是多层次的,则需要修改此代码。

<fetch distinct="false" mapping="logical"> 
   <entity name="account">     
        <attribute name="name" />
        <link-entity name="account"  alias="childaccount" to="accountid" from="parentaccountid"  link-type="outer">
            <attribute name="name" alias="childname" />
        </link-entity>
    </entity>           
</fetch>