1
I need to make a person name query ignoring the accent.
Ex: in my document I have a record with the name "Leticia". If I refer to "Eticia" the result is empty. The behavior I need is to find the person even though the query is without the accent.
session
.Query<PersonResult, Person_Index>()
.Search(r => r.FullName, $"*{name}*", escapeQueryOptions: EscapeQueryOptions.AllowAllWildcards)
.ProjectFromIndexFieldsInto<PersonResult>();
You can put the code of your current query??
– Jéf Bueno
I resolved this issue by reading this post from Elemar: http://www.elemarjr.com/pt/2017/07/ravendb-consegue-falar-portugues/
– Paulo Hinkel