MongoDB.Driver.Builders.QueryConditionList.Near C# (CSharp) Méthode

Near() public méthode

Adds a $near test to the query.
public Near ( double x, double y ) : QueryConditionList
x double The x value of the origin.
y double The y value of the origin.
Résultat QueryConditionList
        public QueryConditionList Near(
            double x,
            double y
        ) {
            return Near(x, y, double.MaxValue);
        }

Same methods

QueryConditionList::Near ( double x, double y, double maxDistance ) : QueryConditionList
QueryConditionList::Near ( double x, double y, double maxDistance, bool spherical ) : QueryConditionList