We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 589f0a9 commit cc93380Copy full SHA for cc93380
docs/general-development/pagination-for-large-result-sets.md
@@ -62,7 +62,7 @@ To use the same approach in CSOM, see the following example:
62
if (startRow == 0) // When issueing the query for first time, we don't have a DocId value yet
63
keywordQuery.QueryText = "sharepoint";
64
else // Putting the IndexDocId first and then the 'actual' query matters (in this case searching for the keyword 'sharepoint')
65
- keywordQuery.QueryText = string.Format("IndexDocId > {0} AND (sharepoint)", startRow);
+ keywordQuery.QueryText = string.Format("IndexDocId>{0} AND (sharepoint)", startRow);
66
keywordQuery.EnableSorting = true;
67
keywordQuery.SortList.Add("[DocId]", Microsoft.SharePoint.Client.Search.Query.SortDirection.Ascending);
68
...
0 commit comments