Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Top line of code should be: ITypeSearch<T> searchQuery = _client.Search<T>(Language.Swedish)
Using this code:
Language.SwedishITypeSearch searchQuery = _client.Search(Language.Swedish)
.For(filter.Query)
.InFields(f => f.Title, f => f.Summary, f => f.Text)
.InAllField()
...
I expect to get Swedish stemming search in the fields Title, Summary and Text. I do get stemming in these fields, but in English!? What am I missing here?