You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At this moment I solve this problem by:
query.QueryString(
q => q.OnFields(g=> g.Name, g=>g.Description)
.Query(request.SearchQuery.Query)
.Operator(Operator.and)
);
As I understand at this moment I should use Text instead Match, but I need multi_match like here http://www.elasticsearch.org/guide/reference/query-dsl/multi-match-query/ because I have two fields with my own analizer.
Is multi_match realization in your plans?
Is QueryString() solution for this?
And thanx for really good product!) This is very useful library.
The text was updated successfully, but these errors were encountered: