Hi,
I have a website in single language. Documentation says that stemming doesn't work with the All field.
http://world.episerver.com/documentation/Items/Developers-Guide/EPiServer-Find/10/DotNET-Client-API/Searching/Free-text-search/
Is there a workaround?
Thanks!
This seems to work:
var result = SearchClient.Instance .Search<SitePageData>(Language.Norwegian) .For(searchText) .InField(x => x.SearchTitle()) .InField(x => x.SearchText()) ... // rest of the code
Hi,
I have a website in single language. Documentation says that stemming doesn't work with the All field.
http://world.episerver.com/documentation/Items/Developers-Guide/EPiServer-Find/10/DotNET-Client-API/Searching/Free-text-search/
Is there a workaround?
Thanks!