我在 user.rb 中有一个范围
scope :active, -some logic here-
我怎样才能使用这个where
查询,比如
User.where("users.active is not nil")
有没有办法在where
子句中使用范围?
我在 user.rb 中有一个范围
scope :active, -some logic here-
我怎样才能使用这个where
查询,比如
User.where("users.active is not nil")
有没有办法在where
子句中使用范围?