NEST (elasticsearch) Highlighting in multiple fields
Each highlighted field needs a separate ".OnField".
.Highlight(h => h
.PreTags("<b>")
.PostTags("</b>")
.OnFields(
f => f.OnField("Title"),
f => f.OnField("Summary")
)
)
See another example here.