如何在MongoDB C#中使用地理空间查询?

时间:2019-05-07 13:44:20

标签: c# .net mongodb-query geospatial

如何使用C#运行地理查询

像这样简单的事情

db.restaurants.find({ location:
       { $geoWithin:
          { $centerSphere: [ [ -73.93414657, 40.82302903 ], 5 / 3963.2 ] } } })

关于如何做到这一点的任何想法?

1 个答案:

答案 0 :(得分:1)

我相处得很好, 方法如下:

var filter = Builders<BsonDocument>.Filter.GeoWithinCenterSphere("location", -73.93414657, 40.82302903 ,5 / 3963.2);

var results =  collection.Find(filter).toList();

谢谢