有没有办法使用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)