我正在使用 Mongo 2.2 。如何使用 C# 访问查询信息?

目前有以下内容来获取我的数据:

 var records = _collection.Find(filters).ToList<Vehicle>();

我试图在查询结束时添加一个 .explain() 类似于我在 Robomongo 中可以做的事情:
var records = _collection.Find(filters).explain();

但是,它不存在,我相信因为它不是游标。有谁知道如何在 C# 中获取此查询数据?

最佳答案

MongoCollection 类的 FindAs() 方法产生了 MongoCursor 类的 .Explain() 方法。我从 this link 找到了答案。

var qLinq = Query<T>.Where(x => x.name=="jim");

var exp = Collection.FindAs<T>(qLinq).Explain()

关于c# - MongoDB - 不能使用 .explain() 来获取 C# 代码中的查询信息?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39742956/

10-13 05:08