IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Span Multi Term Query Usage
editSpan Multi Term Query Usage
editFluent DSL example
editq .SpanMultiTerm(c => c .Name("named_query") .Boost(1.1) .Match(sq => sq .Prefix(pr => pr.Field(p => p.Description).Value("pre-*")) ) )
Object Initializer syntax example
editnew SpanMultiTermQuery { Name = "named_query", Boost = 1.1, Match = new PrefixQuery { Field = Infer.Field<Project>(f => f.Description), Value = "pre-*" } }
Example json output.
{ "span_multi": { "_name": "named_query", "boost": 1.1, "match": { "prefix": { "description": { "value": "pre-*" } } } } }