假设我有三个模型:
class Foo < ActiveRecord::Base
has_many :things
end
class Thing < ActiveRecord::Base
belongs_to :foo
belongs_to :other_thing
end
class OtherThing
has_many :things
end
我怎样才能从以下方面出发Foo
并急切地加载OtherThing
:
Foo.includes([:things => [:other_things]})
我已经搜索但找不到任何东西。
谢谢