将范围应用于关联

时间:2011-04-16 16:29:14

标签: ruby-on-rails

我在控制器中有这个:

@apples = Apple.includes(:oranges)

如何在橘子上涂抹范围?

我已经尝试了一切......

1 个答案:

答案 0 :(得分:0)

@apples = Apple.joins(:oranges) & Orange.scope

查看this blog post的最后一个示例。