November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
The default number of hits returned in a query is 10. To get more/page you can use:
query
.Skip() // bypass the specified number of hits in the resultlist
.Take() // the number of hits returned in the result
.GetResult()
If you want the total number of matching hits (regardless of the number you want to have returned) you just use:
result.TotalMatching
Best Regards,
Henrik
Greetings
I am testing EPiServer.Find using a developer index. All my queries always returns just 10 hits even though the actual total count is alot more. Is it possible to increase this ammount some how or is it just a limitation placed there due to it being a developer index?