在 Rails3 中,我有:
Class Teacher
# active :boolean
has_and_belongs_to_many :subjects
Class Subject
# active :boolean
has_and_belongs_to_many :teachers
我正在尝试构建一个 Teacher 范围,该范围返回所有Teachers
与active
a 相关的Subject
内容active
。
这些作用域单独工作,但如何将它们与 OR组合为单个作用域?
scope :active_teachers, where(active: true)
scope :more_active_teachers, joins(:subjects).where(:subjects => {active: true})
我试过这个没有成功:
scope :active_teachers, where(active: true).or(joins(:subjects)
.where(:subjects => {active: true}))
更新:
我以为我有一个解决方案,但这不再是延迟加载,两次访问数据库并且——最重要的是——返回一个数组而不是一个 AR 对象!
scope :active_teachers, where(active: true) |
joins(:subjects).where(:subjects => {active: true})