如何编写“orderby”的查询在 Mongo 驱动程序中进行 C# 排序?
我正在尝试使用 MongoDB 的 C# 驱动程序从 MongoDB 中的“Deal”集合中检索五个最近的文档。我可以用下面的代码来做到这一点。
public IList<TEntity> GetRecentFive()
{
IList<TEntity> entities = new List<TEntity>();
using (MongoDbContext dbContext = new MongoDbContext(_dbFactory))
{
var cursor = dbContext.Set<TEntity>().FindAll().SetSortOrder(SortBy.Descending("ModifiedDateTime")).SetLimit(5);
foreach (TEntity entity in cursor)
{
entities.Add(entity);
}
}
return entities;
}
但我只想获取最近的 5 个文档,而 FindAll() 会加载集合中的所有文档。我尝试使用 Find() 来完成此操作,但它需要一个查询作为参数。如何在 Mongo 驱动程序中编写“orderby”查询以便 C# 进行排序?
https://stackoverflow.com/a/2148479/778101在这里提出了类似的问题。但接受的答案对我不起作用。
I am trying to retrieve five recent documents from "Deal" collection in a MongoDB using C# driver for MongoDB. I can do it with the below code.
public IList<TEntity> GetRecentFive()
{
IList<TEntity> entities = new List<TEntity>();
using (MongoDbContext dbContext = new MongoDbContext(_dbFactory))
{
var cursor = dbContext.Set<TEntity>().FindAll().SetSortOrder(SortBy.Descending("ModifiedDateTime")).SetLimit(5);
foreach (TEntity entity in cursor)
{
entities.Add(entity);
}
}
return entities;
}
But I want to get only the recent 5 documents and FindAll() loads all the documents in the collection. I tried to do it with Find() but it needs a query as a parameter. How can I write a query for "orderby" in Mongo driver for C# to sort?
https://stackoverflow.com/a/2148479/778101 asked a similar question here. But the accepted answer doesn't work for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
也是解决这个问题的正确方法
is also a correct method to solve this problem
看起来接受的答案已经过时或者我不明白。这是在 MongoDb C# Driver 2.0 中排序的方式:
Looks like the accepted answer is out of date or I don't understand it. This is how you order by in MongoDb C# Driver 2.0:
您可以使用 MongoDB.Driver.Builders.Query.Null 作为 Find() 的 IMongoQuery 参数,然后执行 SetSortOrder().SetLimit()
您的代码可以是这样
You can use
MongoDB.Driver.Builders.Query.Null
as IMongoQuery parameter for Find() and than do theSetSortOrder().SetLimit()
Your code can be like
您应该使用查找方法。 C# 中的
Query.And()
相当于 mongodb shell 中的空查询{}
。完整的示例如下所示:实际上,如果您收集强类型,它具有方法
Find(IMongoQuery query)
,如果没有,则它具有方法FindAs(IMongoQuery query)
。You should use Find method.
Query.And()
in c# will be equivalent to empty query{}
at mongodb shell. So full example will looks like:Actually if you collection strong typed it have method
Find(IMongoQuery query)
, if not then it have methodFindAs<Type>(IMongoQuery query)
.FindAll 只是 Find(Query.Null) 的快捷方式。
没有理由不能将 SetSortOrder 和 SetLimit 与 FindAll 一起使用。
FindAll is just a shortcut for Find(Query.Null).
There is no reason you can't use SetSortOrder and SetLimit with FindAll.