Click or drag to resize

SearchScoreDefinitionBuilderTDocumentBoost Method (ExpressionFuncTDocument, Double, Double)

Creates a score modifier that multiplies a result's base score by the value of a numeric field in the documents.

Namespace:  MongoDB.Driver.Search
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public SearchScoreDefinition<TDocument> Boost(
	Expression<Func<TDocument, double>> path,
	double undefined = 0
)

Parameters

path
Type: System.Linq.ExpressionsExpressionFuncTDocument, Double
The path to the numeric field whose value to multiply the default base score by.
undefined (Optional)
Type: SystemDouble
The numeric value to substitute if the numeric field is not found in the documents.

Return Value

Type: SearchScoreDefinitionTDocument
A boost score modifier.
See Also