gpt4 book ai didi

c# - MongoDB - 无法使用 .explain() 在 C# 代码中获取查询信息?

转载 作者:可可西里 更新时间:2023-11-01 09:16:25 24 4
gpt4 key购买 nike

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

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

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

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

var records = _collection.Find(filters).explain();

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

最佳答案

MongoCursor 类的 .Explain() 方法源自 MongoCollection 类的 FindAs() 方法。我从 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com