Is it possible to limit the amount of results returned in a response when using a QueryExpression in CRM 4

后端 未结 2 629
梦如初夏
梦如初夏 2020-12-20 16:30

Basically I have a QueryExpression that returns over 3000 results. I only need to use between 50 and 200 of these. If I was using normal sql I could use SELECT TOP 200.....

2条回答
  •  佛祖请我去吃肉
    2020-12-20 16:44

    @Matt basically said everything right. This article expands on his answer.

    What you essentially want to do is use PageInfo prop of QueryExpression. That way you can limit the results, or, even better fetch more than 5000 rows (default limit). PageInfo is used as a paging indicator. How many rows does a page have, how many pages and most important, PagingCookie used for recursive read of more data (more than 5k rows) https://msdn.microsoft.com/en-us/library/mt269606.aspx

提交回复
热议问题