我想用这些模型查询属于学校的部分:
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
我对如何做到这一点有点迷茫。
我希望能够调用属于学校的部分列表并从这些部分中找到学校(并查询它们之间的所有关系)
任何帮助将不胜感激。