следующий запрос работает нормально для первой страницы
<fetch count="10" no-lock="true" page="1">
<entity name="account">
<attribute name="accountid" />
<attribute name="name" />
<link-entity name="contact" from="parentcustomerid" to="accountid" link-type="outer" alias="contact">
<attribute name="contactid" />
<attribute name="fullname" />
<attribute name="jobtitle" />
<attribute name="emailaddress1" />
<attribute name="telephone1" />
<attribute name="donotbulkemail" />
<attribute name="donotphone" />
<attribute name="telephone3" />
<attribute name="mobilephone" />
<attribute name="statuscode" />
<attribute name="statecode" />
<order attribute="lastname" />
</link-entity>
</entity>
</fetch>
тот же запрос для второй страницы дает только одну запись
<fetch count="10" no-lock="true" page="2">
<entity name="account">
<attribute name="accountid" />
<attribute name="name" />
<link-entity name="contact" from="parentcustomerid" to="accountid" link-type="outer" alias="contact">
<attribute name="contactid" />
<attribute name="fullname" />
<attribute name="jobtitle" />
<attribute name="emailaddress1" />
<attribute name="telephone1" />
<attribute name="donotbulkemail" />
<attribute name="donotphone" />
<attribute name="telephone3" />
<attribute name="mobilephone" />
<attribute name="statuscode" />
<attribute name="statecode" />
<order attribute="lastname" />
</link-entity>
</entity>
</fetch>
Не знаю, что не так со второй и следующей страницейrequest?
Если я удаляю order attribute
из объекта ссылки, то он работает нормально.