标签: ruby-on-rails ruby-on-rails-3 mongoid mongoid3
在Rails 3应用程序上使用Mongoid
我想以这样的方式运行比较查询
Model.where(:created_at.gte =>(:some_other_timestamp))
答案 0 :(得分:1)
尝试在查询($where)中使用JavaScript表达式,如下所示:
$where
Model.where('this.created_at >= this.some_other_timestamp')