SearchFacetBuilderTDocumentDate Method (String, SearchPathDefinitionTDocument, IEnumerableDateTime, String) |
Creates a facet that narrows down search result based on a date.
Namespace:
MongoDB.Driver.Search
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax public SearchFacet<TDocument> Date(
string name,
SearchPathDefinition<TDocument> path,
IEnumerable<DateTime> boundaries,
string default = null
)
Public Function Date (
name As String,
path As SearchPathDefinition(Of TDocument),
boundaries As IEnumerable(Of DateTime),
Optional default As String = Nothing
) As SearchFacet(Of TDocument)
member Date :
name : string *
path : SearchPathDefinition<'TDocument> *
boundaries : IEnumerable<DateTime> *
?default : string
(* Defaults:
let _default = defaultArg default null
*)
-> SearchFacet<'TDocument>
Parameters
- name
- Type: SystemString
The name of the fact. - path
- Type: MongoDB.Driver.SearchSearchPathDefinitionTDocument
The field path to facet on. - boundaries
- Type: System.Collections.GenericIEnumerableDateTime
A list of date 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:
SearchFacetTDocumentA date search facet.
See Also