如何使用C#运行地理查询
像这样简单的事情
db.restaurants.find({ location:
{ $geoWithin:
{ $centerSphere: [ [ -73.93414657, 40.82302903 ], 5 / 3963.2 ] } } })
关于如何做到这一点的任何想法?
答案 0 :(得分:1)
我相处得很好, 方法如下:
var filter = Builders<BsonDocument>.Filter.GeoWithinCenterSphere("location", -73.93414657, 40.82302903 ,5 / 3963.2);
var results = collection.Find(filter).toList();
谢谢