标签: ruby-on-rails mongoid
如何查询Mongoid,'where not not'?例如
where('comment_id IS NOT NULL')
如何使用mongoid?
答案 0 :(得分:9)
您可以使用$ne
$ne
where(:comment_id.ne => nil)
相关documentation of queries。
答案 1 :(得分:2)
试试这个
Model.where(:comment_id.exists => true)