私はこのクエリでフェッチするレコードが5,000を超えていますが、毎回null値を持つクッキーを取得します。私はリンクされたエンティティがここで問題であることを認識しました。なぜなら、私はそれを削除すると毎回クッキーを取得するからです。CRM FetchXMLが5000レコードをフェッチする
<fetch version="1.0" mapping="logical" distinct="true" page="1" count="2000" >
<entity name="listmember" >
<link-entity name="contact" from="contactid" to="entityid" alias="c" >
<attribute name="contactid" />
<attribute name="telephone1" />
<link-entity name="phonecall" from="ic_customer" to="contactid" alias="pc" link-type="outer" distinct="true">
<attribute name="activityid" />
<filter type="and" >
<filter type="or" >
<condition attribute="statuscode" operator="eq" value="1" />
<condition attribute="ic_end" operator="on-or-after" value="2016-11-12" />
</filter>
</filter>
</link-entity>
<filter type="and" >
<condition attribute="statecode" operator="eq" value="0" />
<condition attribute="telephone1" operator="not-null" />
<condition attribute="donotphone" operator="eq" value="0" />
</filter>
</link-entity>
<filter type="and" >
<condition attribute="listid" operator="in" >
<value>
{f89087ef-7017-e611-80e3-5065f38a3951}
</value>
</condition>
<condition entityname="pc" attribute="activityid" operator="null" />
</filter>
</entity>
</fetch>
誰もがこの要求にページングクッキーを取得する方法を知っていますか?
コードを説明しよう。 – Gahan