Can someone point me in the right direction of how to implement this?
So far I can query my index and get a response
SearchIndexClient indexClient = service.Indexes.GetClient(indexName);
SearchParameters sp = new SearchParameters()
{
Facets = new string[] { "Brand", "Price,values:10|25|100|500|1000|2500" },
Filter = AzureUtils.BuildFilter(brand, priceFrom, priceTo),
OrderBy = new string[] { "" },
IncludeTotalResultCount = true,
Top = 9,
SearchMode = SearchMode.Any
};
DocumentSearchResponse<MyClass> response = response = indexClient.Documents.Search<MyClass>(searchText, sp);
When the result comes back the response.ContinuationToken is null
How can I get my index to return a value for the response.ContinuationToken property.
Also, how do I can implement this to fetch the next 9 results?
Thanks