QueryNearTCoordinates Method (String, GeoJsonPointTCoordinates) | 
 
            Tests that the value of the named element is near a point (see $near).
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic static IMongoQuery Near<TCoordinates>(
	string name,
	GeoJsonPoint<TCoordinates> point
)
where TCoordinates : GeoJsonCoordinates
Public Shared Function Near(Of TCoordinates As GeoJsonCoordinates) ( 
	name As String,
	point As GeoJsonPoint(Of TCoordinates)
) As IMongoQuery
static member Near : 
        name : string * 
        point : GeoJsonPoint<'TCoordinates> -> IMongoQuery  when 'TCoordinates : GeoJsonCoordinates
Parameters
- name
 - Type: SystemString
The name of the element to test. - point
 - Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonPointTCoordinates
The point. 
Type Parameters
- TCoordinates
 - The type of the coordinates.
 
Return Value
Type: 
IMongoQueryAn IMongoQuery.
See Also