Quantcast
Channel: Developer to developer
Viewing all articles
Browse latest Browse all 9076

Find - Allow stemming when using Synonyms in a Typed search without specifying .InFields()

$
0
0

Currently, stemming doesn't work in a Typed search when .UsingSynonyms() is used but .InFields() is not specified.

For example, this breaks stemming:


var result = SearchClient.Instance.Search<T>(Language.English)
.For(query)
.UsingSynonyms()
.GetResult();

Thanks


Viewing all articles
Browse latest Browse all 9076