嘿,谁能帮帮我,我正在使用 fetch xml 来检索数据,但结果只显示 5000 ,但我有 17000 条记录。如何检索所有记录
var fetchXml =
'<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false" >' +
'<entity name="account">' +
'<all-attributes/>' +
'</entity>' +
'</fetch>';
var retrievedate = XrmSvcToolkit.fetch({
fetchXml: fetchXml,
async: false,
successCallback: function (result) {
return result;
},
errorCallback: function (error) {
throw error;
}
});