Click or drag to resize

SearchFacetBuilderTDocumentNumber Method (String, SearchPathDefinitionTDocument, IEnumerableBsonValue, String)

Creates a facet that determines the frequency of numeric values by breaking the search results into separate ranges of numbers.

Namespace:  MongoDB.Driver.Search
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public SearchFacet<TDocument> Number(
	string name,
	SearchPathDefinition<TDocument> path,
	IEnumerable<BsonValue> boundaries,
	string default = null
)

Parameters

name
Type: SystemString
The name of the facet.
path
Type: MongoDB.Driver.SearchSearchPathDefinitionTDocument
The field path to facet on.
boundaries
Type: System.Collections.GenericIEnumerableBsonValue
A list of numeric values that specify the boundaries for each bucket.
default (Optional)
Type: SystemString
The name of an additional bucket that counts documents returned from the operator that do not fall within the specified boundaries.

Return Value

Type: SearchFacetTDocument
A number search facet.
See Also