Try our conversational search powered by Generative AI!

Stemming search uses wrong language?

Vote:
 

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?

#112093
Oct 22, 2014 15:30
Vote:
 

Top line of code should be: ITypeSearch<T> searchQuery = _client.Search<T>(Language.Swedish)

#112094
Oct 22, 2014 15:50
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.