从一个组织表中,另外两个表belongs_to
与has_many
关联挂起,它们都具有该organization_id键。
所以对于急切的加载,我写了这个:
@organization = Organization.includes(:population_summaries, :key_performance_inds).find(params[:id])
这应该有效。
但现在我有第三张桌子要包括在内。key_performance_interval 具有kpi_id
用作外键以指向 key_performance_int 表的字段。我无法编写该部分并将其添加到我的急切加载部分。我应该如何添加那个?