CompoundSearchDefinitionBuilder<TDocument>.Should Method (SearchDefinition<TDocument>[]) |
Adds clauses which cause documents in the result set to be scored higher if
they match.
Namespace:
MongoDB.Driver.Search
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntaxpublic CompoundSearchDefinitionBuilder<TDocument> Should(
params SearchDefinition<TDocument>[] clauses
)
Public Function Should (
ParamArray clauses As SearchDefinition(Of TDocument)()
) As CompoundSearchDefinitionBuilder(Of TDocument)
member Should :
clauses : SearchDefinition<'TDocument>[] -> CompoundSearchDefinitionBuilder<'TDocument>
Parameters
- clauses
- Type:MongoDB.Driver.Search.SearchDefinition<TDocument>[]
The clauses.
Return Value
Type:
CompoundSearchDefinitionBuilder<TDocument>The compound search definition builder.
See Also