如何在 MongoCollection 中找到最新的文档?目前我正在执行以下操作,但无论如何它似乎都返回相同的值:
_collection.FindAllAs<Game>().SetSortOrder(SortBy.Descending("When")).FirstOrDefault<Game>();
文档的伪代码结构如下:
Game
{
DateTime When;
List<Score> Scores;
...other variables...
}
游戏总是通过顺序存储Update.PushWrapped<Score>(Score s)
我该如何改进呢?