NEST与JSON语法对照 一 match与multi_match
NEST与JSON语法对照 一 match与multi_match
{
"query": {
"bool": {
"must": [
{
"multi_match": {
"query": "一二三",
"fields": ["title","summary"]
}
},
{"match": {"userId": {"query": "123456"}}
}
]
}
}
}
C#
search.Query(
q => q.Bool(
b => b.Must(
m => m.MultiMatch(
l => l.Query("一二三").OnFields(new[] {"title","summary"})
),
m => m.Match(t => t.OnField(o => o.UserId).Query("123456"))
)
)
)
定,精,简,俭