3 つのモデルがあるとします。
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]})
検索しましたが、何も見つかりません。
ありがとう