MongoDB 地理空间搜索和官方 C# 驱动程序
一些专家可以指出在 MongoDB 中使用官方 C# 驱动程序进行地理空间搜索的最佳方法吗?最好的对象构造函数(字符串/双精度),建立索引,查找附近。非常感谢您的帮助。
db.places.ensureIndex( { loc : "2d" } , { min : -500 , max : 500 } ),
db.places.find( { loc : { $near : [50,50] , $maxDistance : 5 } } ).limit(20),
Can some expert point the best ways to a Geospacial search using official C# driver in MongoDB. Best Object constructor(strings /doubles), Build an index, find near. Many thanks for your help.
db.places.ensureIndex( { loc : "2d" } , { min : -500 , max : 500 } ),
db.places.find( { loc : { $near : [50,50] , $maxDistance : 5 } } ).limit(20),
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与这些 Mongo shell 命令等效的 C# 是:
The C# equivalent to those Mongo shell commands is: