我正在使用C#MongoDB.Driver版本2.4.3。我已经成功地将数据投射到新的BSonDocument中并且想要使用$ redact,但它看起来并不像驱动程序支持那个阶段。是否有不同的方法在C#中创建舞台?
var collection = Database.GetCollection<BsonDocument>("myCollection");
var test = collection.Aggregate().Project("{\"_id\":1, \"name\":\"$name.fullName\"");