MongoDB C# 驱动程序:$where with javascript 函数
MongoDB C# Driver: $where with javascript function
使用 MongoDB C# 驱动程序 (http://mongodb.github.io/mongo-csharp-driver),如何创建一个使用 $where 和 JavaScript 函数的查询?
如果使用 MongoVUE 之类的 GUI,下面是我尝试创建的查询示例:
{ $where: 'function() { return true }' }
我知道我可以使用旧驱动程序来执行此操作,但想知道是否有办法只使用新的 API。
我们没有它的构建器助手,因为它不是您通常应该使用的东西。当你需要它时,你可以下拉并从 BsonDocument 中构建它。
new BsonDocument("$where", new BsonJavaScript("function() { return true; }"));
使用 MongoDB C# 驱动程序 (http://mongodb.github.io/mongo-csharp-driver),如何创建一个使用 $where 和 JavaScript 函数的查询?
如果使用 MongoVUE 之类的 GUI,下面是我尝试创建的查询示例:
{ $where: 'function() { return true }' }
我知道我可以使用旧驱动程序来执行此操作,但想知道是否有办法只使用新的 API。
我们没有它的构建器助手,因为它不是您通常应该使用的东西。当你需要它时,你可以下拉并从 BsonDocument 中构建它。
new BsonDocument("$where", new BsonJavaScript("function() { return true; }"));