如何使用Reactive Mongo查询DateTime?

时间:2015-03-03 22:46:14

标签: mongodb scala datetime reactivemongo

这就是我目前所拥有的:

BSONDocument("updated" -> BSONDocument("$gte" -> BSONDateTime(DateTime.now.plusDays(-2).getMillis),
            "$lt" -> BSONDateTime(DateTime.now.plusDays(-1).getMillis)))

然而,当我使用它时,我没有从数据库中得到任何东西它只是停止,我一直在等待一小时的响应,当它通常需要几秒钟与其他类型的查询。 在DB shell中,日期以ISODate格式出现,如果这有帮助

感谢

1 个答案:

答案 0 :(得分:0)

您可以使用 collection.find(gte("created",BsonDateTime(epoch)))