gpt4 book ai didi

java - MongoDB Java 驱动程序 Filters.expr 生成不正确的过滤器表达式

转载 作者:行者123 更新时间:2023-12-01 16:47:07 26 4
gpt4 key购买 nike

我正在尝试构建一个如下所示的过滤器表达式:

{ $expr:{ $gt:['$bal1', '$bal2'] } }

使用 Filter.expr 函数:

Bson filter = Filters.expr( gt("$bal1", "$bal2") );
BsonDocument doc = filter.toBsonDocument(BsonDocument.class, collection.getCodecRegistry());
System.out.println(doc.toJson());

这会生成以下 json:

{ "$expr" : { "$bal1" : { "$gt" : "$bal2" } } }

显然这是不对的。有没有某种方法可以使用 Java 静态导入接口(interface)创建此查询,或者我是否必须手动构造字符串?我是 Mongo 新手,我无法想象每个人都手工构建字符串 - 任何指导将不胜感激。

MongoDB Java驱动程序3.6.1

最佳答案

$expr采用聚合比较函数。所以你不能使用常规的查询生成器。

不幸的是,您只需使用Document.parse来解析聚合比较字符串。

Bson filter = Filters.expr( Document.parse(" { $gt: [ \"$bal1\" , \"$bal2\"] } ") );

比较 query operatorsaggregation comparison operators .

检查实现情况jira了解更多详情。

关于java - MongoDB Java 驱动程序 Filters.expr 生成不正确的过滤器表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48511408/

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