在activerecord查询中使用范围

时间:2013-07-21 06:33:37

标签: ruby-on-rails-3 activerecord scope where

我在user.rb中有一个范围

scope :active, -some logic here-

如何使用此where查询,例如

User.where("users.active is not nil")

有没有办法在where子句中使用范围?

1 个答案:

答案 0 :(得分:0)

当然是。就像这样:

User.where("users.active is not nil").active