标签: mongodb spring-mongodb
我正在使用spring框架mongoDB Criteria。我有一个对象A,其中startDateTime和endDateTime保存在MongoDB中。我想编写一个查询,其中startDateTime + minutes小于endDateTime。
Criteria.where("endDateTime").gte("startDateTime") plus minutes)
请帮我写这个问题。