November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Find will by default only return 10 items. Use .Take to increase the number of items (1000 is max):
var listableItems = _findClient.Service.Search<ListablePage>() .Filter(x => x.Ancestors().Match(ContentReference.StartPage.ID.ToString())) .Filter(x => x.CategoryTag.Match(tagPage.ContentLink)) .OrderByDescending(x => x.NewsDateOrPublishDate) .Take(100) .FilterForVisitor() .GetPagesResult(LanguageSelector.AutoDetect());
Alright, cool. Must have missed the default of Find. Also found why PageDataCollection was different on the other Find query, the .Take(pageSize) for that query was, for some reason, hidden away in another method so I didn´t see the connection while debugging :)
Thanks for your input!
Hi,
I have a page where I want to display all pages of a certain page type in an RSS way and I´m using Find for the search. I want to find all pages that belong to the current StartPage, is of page type ListablePage and the page also need to have a specific category set. The category is just a ConentReference property called CategoryTag which only takes pages of page type TagPage.
Here is my code for the search:
At first I just used ToList() on GetPagesResult and I couldn´t understand why I only got 10 items as the result, it should be around 50 items. Then I saw the property PageDataCollection when debugging which explained why my search results got capped to 10. But the question is how to I change the default on PageDataCollection? I also see the TotalMatching which is 50.
While debugging a similar Find question for items where we use pagination I saw that PageDataCollection is set to, for example, 14 if I change a property called PageSize on that listing page to 14. Remember that PageSize is a property we have added to the page type of the listing page, how is PageDataCollection automatically set to the value of my property PageSize?
How do I get ALL of the search result and not only the capped down one in PageDataCollection?
I´m quite new to Find, this is my first project using it so I´m learning. :)