我有这些对象:
当我对字段使用Mongodb排序时,我得到以下排序顺序:
如何将空值移到结果的底部?
我的代码是:
private void Sort(MongoCursor<Item> cursor, Sort sort)
{
if (sort.Ascending)
{
cursor.SetSortOrder(SortBy.Ascending(sort.Field));
}
else
{
cursor.SetSortOrder(SortBy.Descending(sort.Field));
}
}