如何通过MongoDB和C#Linq驱动程序远程订购?

时间:2016-06-07 09:55:30

标签: c# mongodb linq

我的查询定义如下:

var query = from h in myCollection.AsQueryable()
            where LinqToMongo.Inject(Query.Near("location", longitude, latitude, radius / 111.12))
            orderby ??????
            select h;

如何使用Linq从“纬度,经度”到“位置”的距离来订购结果(并在MongoDB中订购,而不是在内存中订购)?

0 个答案:

没有答案