C#mongodb驱动聚合解释

时间:2017-06-14 03:10:38

标签: c# mongodb aggregation-framework mongodb-.net-driver

有没有办法使用C#mongodb驱动程序来获取聚合查询的解释?我特别想要的是执行时间统计。

var redact = BsonDocument.Parse(redactJson);
var project = BsonDocument.Parse(projectJson);
var explain = BsonDocument.Parse(@"{explain: true}");

var pipeline =
            collection.Aggregate()
                .AppendStage<BsonDocument>(redact)
                .AppendStage<BsonDocument>(project)
                .AppendStage<BsonDocument>(explain)

0 个答案:

没有答案