我有以下带有范围的用户对象:
Class User < ActiveRecord::Base
...
scope :vendors, lambda { where(:user_type => 'v') }
scope :customers, lambda { where(:user_type => 'c') }
...
我想inactive
为供应商和客户创建一个行为不同的新范围,例如在伪代码中
scope :inactive, lambda {
if (:user_type => 'v')
where(some_condition_only_for_vendors)
elsif (:user_type => 'c')
where(different_condition_only_for_customers)
else
where(another_condition)
end
}
这样,我可以users.vendors.inactive
根据一组条件获取所有不活跃的供应商,并users.customers.inactive
根据另一组条件获取所有不活跃的客户。
这是可能的还是有更好的方法来做到这一点?请注意,这里有很多遗留代码,因此实现继承可能不可行。
谢谢!