9

我正在为 MongoDB 使用 Spring Data 并获得了以下类

class A {
    List<B> b;
}

class B {
    Date startDate;
    Date endDate;
}

当我保存 A 的对象时,它会像

{
    "_id" : "DQDVDE000VFP8E39",
    "b" : [
          {
              "startDate" : ISODate("2009-10-05T22:00:00Z"),
              "endDate" : ISODate("2009-10-29T23:00:00Z")
          },
          {
              "startDate" : ISODate("2009-11-01T23:00:00Z"),
              "endDate" : ISODate("2009-12-30T23:00:00Z")
          }
    ]
}

现在我想在数据库中查询与 b 中给定日期在 startDate 和 endDate 之间的条目匹配的文档。

Query query = new Query(Criteria.where("b").elemMatch(
    Criteria.where("startDate").gte(date)
    .and("endDate").lte(date)
);

这导致以下 mongo 查询:

{
   "b": {
       "$elemMatch": { 
           "startDate" : { "$gte" : { "$date" : "2009-11-03T23:00:00.000Z"}}, 
           "endDate" : { "$lte" : { "$date" : "2009-11-03T23:00:00.000Z"}}
       }
   }
}

但不返回任何结果文档。有人知道我在做什么错吗?我不明白...

非常感谢您提前!!

4

2 回答 2

13

如果你想查找数组元素的和date之间的文档,那么你需要反转你的和调用:startDateendDatebgtelte

Query query = new Query(Criteria.where("b").elemMatch(
    Criteria.where("startDate").lte(date)
    .and("endDate").gte(date)
);
于 2012-09-07T04:34:02.480 回答
1
{"created_at":{$gt:ISODate("2013-04-30T00:00:00Z"),$lt:ISODate("2013-04-30T23:59:59Z")}}
于 2013-05-06T05:02:36.160 回答