Rails Active Record其中对象具有Attribute

时间:2014-04-20 06:54:14

标签: ruby-on-rails activerecord where

我正在尝试做类似的事情......

self.where(active: true, latitude: !nil)

这不起作用。我基本上需要一些东西来查询具有值的纬度属性的对象。谢谢!

1 个答案:

答案 0 :(得分:2)

这样的事情也有效

self.where("active = ? AND latitude IS NOT ?", true, nil)

OR

Rails 4路

self.where(active: true).where().not(latitude: nil)