springbootmango中查找表的java条件

h79rfbju  于 2021-07-06  发布在  Java
关注(0)|答案(0)|浏览(148)

我正在使用mongodb框架。。。我试图加入2个集合使用 lookup operation 在mongo聚合中,如下所示:

AggregationResults< Author> questionPaperRaw = operations.aggregate(
                    newAggregation(Author.class,
                            lookup("books","id","authorId","bookCollection") 

                           ),
                    Author.class );

上面的工作很好,我的下一个要求是使用图书收藏的标准来过滤这个” where books.category = 'Comedy' ". 我需要以下内容:

AggregationResults< Author> questionPaperRaw = operations.aggregate(
                        newAggregation(Author.class,
                                lookup("books","id","authorId","bookCollection") ,
                                             match(Criteria.where("books.category").is("Comedy") )
                               ),
                        Author.class );

如何检查国外托收情况” Book “在查找过程中。有可能这样做吗?。。。请帮帮我。。。
短暂性脑缺血发作

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题