我有这些表和关系:
user has_many projects
project has_many tasks
task has_many actions
我想建立一个范围,允许我选择所有当前用户的操作,无论他们属于哪个项目或任务。
由于
答案 0 :(得分:0)
如果您使用nested_has_many_through插件,我认为范围不是必需的。
class User < ActiveRecord::Base
has_many :projects
has_many :tasks, :through => :projects
has_many :actions, :through => :tasks
end
class Project < ActiveRecord::Base
has_many :tasks
has_many :actions, :through => :tasks
end
User.first.actions
答案 1 :(得分:0)
我发现了一些有用的东西。
在动作模型中:
def self.owned_by (user)
joins("join tasks on actions.task_id = tasks.id").
joins("join projects on tasks.list_id = projects.id").
where("projects.user_id = ?" , user.id)
end
从控制台:
u=User.find(1)
Action.owned_by(u).count
=> 521 # which is correct
我确定它是否是最好的方法,因为我对sql有点新意。我觉得它可以更简洁。
编辑略好一点
Action.joins(:task => [{:project => :user }]).where(:projects => {:user_id => user.id })