我有三种模式,父、父、子关系:Organization
,Category
,Post
。
我试图在我的Post
模型中创建一个作用域,首先在传递的集合上使用where
,然后在父集合上使用:
scope :ready, -> {
where("next_setup_at < ?", DateTime.current)
.joins(category: :organization)
.where("organizations.active = ?", true)
}
但是Postgres给了我一个错误:
ActiveRecord::语句无效:PG::ambiguous column:错误:列引用“下一个安装位置”不明确
第1行:…组织“.id”=“类别”。“组织id”在哪里(下一个设置。。。
^
:从“类别”上的“职位”内部加入“类别”。“id”=“职位”。“组织”上的“类别id”内部加入“组织”。“id”=“类别”。“组织id”位置(下一个设置位置
最佳答案
看看你的.where
条款。第二个很好地定义了要查询的列。
where("organizations.active = ?", true)
第一个没有。
where("next_setup_at < ?", DateTime.current)
必须定义
next_setup_at
列引用的表。导致where("posts.next_setup_at < ?", DateTime.current)
进一步改进
您可以很容易地在纯ActiveRecord中指定要引用的表,如下所示:
where(posts: {next_setup_at: DateTime.current}, categories: {active: true})
关于ruby-on-rails - 在集合和祖 parent 上都使用.where创建范围,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36159521/