使用官方 C# 驱动程序在 MongoDB 中按 $natural 排序
我正在使用官方 C# 驱动程序,并且想按 $natural
对集合进行排序。
我知道要按键排序,我可以使用
collection.Find(query).SetSortOrder(SortBy.Descending("Name"))
How do I sort with $natural
?
I'm using the official C# driver and I want to sort a collection by $natural
.
I know for sorting by keys, I can use
collection.Find(query).SetSortOrder(SortBy.Descending("Name"))
How do I sort with $natural
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用降序排序。例如:
Yes, you can use sort descending by it. For example:
使用 2.0 驱动程序的语法将 Robert Stam 的答案更新为大致相同的内容...
Updated Robert Stam's answer to something roughly equivalent, using the syntax for the 2.0 driver...