SearchFacetBuilderTDocumentNumberTField Method (String, ExpressionFuncTDocument, TField, BsonValue) |
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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax public SearchFacet<TDocument> Number<TField>(
string name,
Expression<Func<TDocument, TField>> path,
params BsonValue[] boundaries
)
Public Function Number(Of TField) (
name As String,
path As Expression(Of Func(Of TDocument, TField)),
ParamArray boundaries As BsonValue()
) As SearchFacet(Of TDocument)
member Number :
name : string *
path : Expression<Func<'TDocument, 'TField>> *
boundaries : BsonValue[] -> SearchFacet<'TDocument>
Parameters
- name
- Type: SystemString
The name of the facet. - path
- Type: System.Linq.ExpressionsExpressionFuncTDocument, TField
The field path to facet on. - boundaries
- Type: MongoDB.BsonBsonValue
A list of numeric values that specify the boundaries for each bucket.
Type Parameters
- TField
- The type of the field.
Return Value
Type:
SearchFacetTDocumentA number search facet.
See Also