我的查询定义如下:
var query = from h in myCollection.AsQueryable()
where LinqToMongo.Inject(Query.Near("location", longitude, latitude, radius / 111.12))
orderby ??????
select h;
如何使用Linq从“纬度,经度”到“位置”的距离来订购结果(并在MongoDB中订购,而不是在内存中订购)?