5

是否可以在视图中显示来自嵌套链接实体的字段?

我有 3 个实体:统计信息、帐户和地址。Statistics 有一个对 Account 的查找,而 account 有一个对 Address 的查找。我想要统计视图中所有这些实体的字段。

我试过这个并得到一个错误:要使用这个保存的视图,您必须删除引用已删除或不可搜索项目的条件和列。

    <savedquery>
        <IsCustomizable>1</IsCustomizable>
        <CanBeDeleted>1</CanBeDeleted>
        <isquickfindquery>0</isquickfindquery>
        <isprivate>0</isprivate>
        <isdefault>0</isdefault>
        <returnedtypecode>10008</returnedtypecode>
        <savedqueryid>{df101ac4-2e4d-e311-9377-005056bd0001}</savedqueryid>
        <layoutxml>
          <grid name="resultset" object="10008" jump="sl_name" select="1" preview="1" icon="1">
            <row name="result" id="sl_statisticsid">
              <cell name="sl_amount" width="100" />
              <cell name="sl_date" width="100" />
              <cell name="sl_debtor" width="100" />
              <cell name="sl_divisioncode" width="100" />
              <cell name="sl_source" width="100" />
              <cell name="sl_statstype" width="100" />
              <cell name="relatedAccount.wl_towncity" width="100"/>
              <cell name="relatedAccount.relatedAddress.wl_city" width="100" />
            </row>
          </grid>
        </layoutxml>
        <querytype>0</querytype>
        <fetchxml>
          <fetch version="1.0" output-format="xml-platform" mapping="logical">
            <entity name="sl_statistics">
              <order attribute="sl_amount" descending="false" />
              <attribute name="sl_statstype" />
              <attribute name="sl_source" />
              <attribute name="sl_divisioncode" />
              <attribute name="sl_debtor" />
              <attribute name="sl_date" />
              <attribute name="sl_amount" />
              <link-entity name="account" from="accountid" to="sl_debtor" alias="relatedAccount">
                <attribute name="wl_towncity" />
                <link-entity name="wl_postalcode" from="wl_postalcodeid" to="wl_postaltowncity" alias="relatedAddress">
                  <attribute name="wl_city" />
                </link-entity>
              </link-entity>
              <attribute name="sl_statisticsid" />
            </entity>
          </fetch>
        </fetchxml>
        <LocalizedNames>
          <LocalizedName description="Statistics and Address" languagecode="1033" />
        </LocalizedNames>
      </savedquery>

如果删除此行,则视图有效:

<cell name="relatedAddress.wi_city" width="100" disableSorting="0" />

有谁知道如何从 GridXML 中的嵌套链接实体中引用元素?

我也试过这个有问题的线:

<cell name="relatedAccount.relatedAddress.wi_city" width="100" disableSorting="0" />

它开始看起来不可能有一个显示来自嵌套链接实体的字段的视图。

4

3 回答 3

3

据我所知,这是不可能的,但请有人证明我错了。

GridXML 的一个限制似乎是只能包含来自第一个链接实体的属性,而不是任何嵌套的链接实体。

于 2013-11-19T07:28:29.017 回答
2

这是我的 FetchXml 的一个例子:

<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false" aggregate="true">
  <entity name="new_coursesection">
    <attribute name="new_coursesectionid" groupby="true" alias="id" />
    <filter type="and">
      <condition attribute="new_coursesectionid" operator="eq" value="{0}" />
    </filter>
    <link-entity name="new_contactcoursesection" from="new_coursesectionid" to="new_coursesectionid" alias="new_contactcoursesection1" link-type="outer">
      <attribute name="new_contactcoursesectionid" aggregate="countcolumn" alias="contactcoursesectioncount" />
    </link-entity>
  </entity>
</fetch>

我正在做一个汇总,但你不应该这样做。我会尝试为您的链接实体和属性提供别名。

于 2013-11-14T15:57:08.960 回答
2

您可以通过嵌套访问来自相关实体的数据

<link-entity>

标签,这是您在发布的代码中所做的。您发布的 fetchxml 有哪些问题?您是收到错误还是没有得到正确的结果。

于 2013-11-14T15:53:49.753 回答