FilterDefinitionBuilderTDocumentGeoWithinBox Method (ExpressionFuncTDocument, Object, Double, Double, Double, Double) |
Creates a geo within box filter.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
Syntax public FilterDefinition<TDocument> GeoWithinBox(
Expression<Func<TDocument, Object>> field,
double lowerLeftX,
double lowerLeftY,
double upperRightX,
double upperRightY
)
Public Function GeoWithinBox (
field As Expression(Of Func(Of TDocument, Object)),
lowerLeftX As Double,
lowerLeftY As Double,
upperRightX As Double,
upperRightY As Double
) As FilterDefinition(Of TDocument)
member GeoWithinBox :
field : Expression<Func<'TDocument, Object>> *
lowerLeftX : float *
lowerLeftY : float *
upperRightX : float *
upperRightY : float -> FilterDefinition<'TDocument>
Parameters
- field
- Type: System.Linq.ExpressionsExpressionFuncTDocument, Object
The field. - lowerLeftX
- Type: SystemDouble
The lower left x. - lowerLeftY
- Type: SystemDouble
The lower left y. - upperRightX
- Type: SystemDouble
The upper right x. - upperRightY
- Type: SystemDouble
The upper right y.
Return Value
Type:
FilterDefinitionTDocumentA geo within box filter.
See Also