I am trying to query using matchphrase but on multiple fields but my nest allows me to do it on only one field here's my code snippet
var result = client.Search<document>(s => s
.Analyzer("automplete")
.Query(p => p
.MatchPhrase(M => M
.OnField("description")
.Query(value))));
I have multiple fields in class documents and I want search on that fields too.
Please help me with this - thanks in advance!