November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
10 is the defailt number of items returned for a facet. To have more returned use:
GetDealersQuery()
.TermsFacetFor(x => x.CountiesList, x => x.Size = 20)
.Take(0)
.GetPagesResult();
TermsFacetFor is only giving me 10 terms, but I now there should be more. Here is my query for retreiving the facets:
Is there a default count on facets? I have tried using Take without success. I can see that result is returning all the pages of interest.