組如果數據庫結構如下:如何跨越第二級關係
Projects
Features
- ProjectId FK
Tasks
- FeatureId FK
- Estimate
和模式有以下幾種:
Project has_many features
Feature has_many tasks, belongs_to project
Task belongs_to feature
我如何通過分類的具體項目的任務列表使用ActiveRecord查詢界面的FeatureId
與sum(Estimate)
?