ActiveRecord组合关系

发布于 2024-12-06 13:44:58 字数 499 浏览 0 评论 0原文

我想知道是否有更好的方法来做到这一点:

我有 2 个复杂的关系,其中多个连接连接到表 D。我想组合/连接它们以获得表 D 记录。以下方法可行,但有更好的方法吗?

class TableD < ActiveRecord::Base

def self.relation_three
  r1 = TableA.relation_one.select("d.id")
  r2 = TableB.relation_two.select("d.id")
  where("d.id IN (#{r1.to_sql}) OR d.id IN (#{r2.to_sql})")
end

如果这是不可能的,那么我有一个补充问题:

是否可以返回与查询所基于的记录不同的活动记录结果类?即:

TableA.all.joins(:b).select("b.*") # Coerce into TableB class ?

谢谢!

I'm wondering if there's a nicer way to do this:

I have 2 complex relations with multiple joins joining to Table D. I want to combine/join them to get the Table D records. The following works but is there a better way?

class TableD < ActiveRecord::Base

def self.relation_three
  r1 = TableA.relation_one.select("d.id")
  r2 = TableB.relation_two.select("d.id")
  where("d.id IN (#{r1.to_sql}) OR d.id IN (#{r2.to_sql})")
end

And if that's not possible then I have a supplementary question:

Is it possible to return an active record result class different from the record the query is based on? ie:

TableA.all.joins(:b).select("b.*") # Coerce into TableB class ?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文