これらのモデルを使用して、学校に属するセクションを照会したいと思います。
School
has_many :terms
Term
belongs_to :school
has_many :departments
Department
belongs_to :term
has_many :courses
Courses
belongs_to :department
has_many :sections
Section
belongs_to :course
これを行う方法について少し迷っています。
学校に属するセクションのリストを呼び出して、セクションから学校を見つけられるようにしたいと思います (そして、その間のすべての関係を照会します)。
どんな助けでも大歓迎です。