Click or drag to resize

SearchDefinitionBuilder<TDocument>.GeoWithin<TCoordinates, TField> Method (Expression<Func<TDocument, TField>>, GeoWithinArea<TCoordinates>, SearchScoreDefinition<TDocument>)

Creates a search definition that queries for geographic points within a given geo object.

Namespace:  MongoDB.Driver.Search
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
public SearchDefinition<TDocument> GeoWithin<TCoordinates, TField>(
	Expression<Func<TDocument, TField>> path,
	GeoWithinArea<TCoordinates> area,
	SearchScoreDefinition<TDocument> score = null
)
where TCoordinates : GeoJsonCoordinates

Parameters

path
Type: System.Linq.Expressions.Expression<Func<TDocument, TField>>
Indexed geo type field or fields to search.
area
Type: MongoDB.Driver.Search.GeoWithinArea<TCoordinates>
Object that specifies the area to search within.
score (Optional)
Type: MongoDB.Driver.Search.SearchScoreDefinition<TDocument>
The score modifier.

Type Parameters

TCoordinates
The type of the coordinates.
TField
The type of the field.

Return Value

Type: SearchDefinition<TDocument>
A geo within search definition.
See Also