Take the community feedback survey now.
Hi
At the moment is only able to prefix match
Autocomplete typing
As per above
"The autocomplete functionality only works from the beginning of a phrase; the search term must begin with the first word in the autocomplete phrase."
var autoCompletePhrases = await Client.Statistics().AutocompleteAsync(queryterm, count);
Is there anyway to substring match
so if my auto complete term is "one two three"
The result is returned if I start with "one".
If I pass "two" it does not return anything.
Regards
I guess not; you will have to do a search instead of AutoComplete
Hi
At the moment is only able to prefix match
Autocomplete typing
As per above
"The autocomplete functionality only works from the beginning of a phrase; the search term must begin with the first word in the autocomplete phrase."
var autoCompletePhrases = await Client.Statistics().AutocompleteAsync(queryterm, count);
Is there anyway to substring match
so if my auto complete term is "one two three"
The result is returned if I start with "one".
If I pass "two" it does not return anything.
Regards