标签: ruby-on-rails-3 activerecord scope where
我在user.rb中有一个范围
scope :active, -some logic here-
如何使用此where查询,例如
where
User.where("users.active is not nil")
有没有办法在where子句中使用范围?
答案 0 :(得分:0)
当然是。就像这样:
User.where("users.active is not nil").active