如何引用另一个属性mongoid selection:created_at.gte => :some_other_timestamp

时间:2014-08-18 23:29:30

标签: ruby-on-rails ruby-on-rails-3 mongoid mongoid3

在Rails 3应用程序上使用Mongoid

我想以这样的方式运行比较查询

Model.where(:created_at.gte =>(:some_other_timestamp))

1 个答案:

答案 0 :(得分:1)

尝试在查询($where)中使用JavaScript表达式,如下所示:

Model.where('this.created_at >= this.some_other_timestamp')