如何使用C驱动程序按嵌套对象(来自MapReduce查询)排序

{"_id": { "date" : "02/01/2001"} }"

SortBy.Descending("_id")  'Sorts by "_id" descending
SortBy.Descending("???")  'Sorts by "date" descending

但我不知道该用什么来实现

最佳答案

在给定的情况下,无需指定嵌套对象,因为按_id字段排序将在该字段中包含的日期进行功能排序。
但是,如果需要,可以使用dot notation访问嵌套对象。这看起来像:

SortBy.Descending("_id.date")

08-05 07:30