Rails:has_many 的 ActiveRecord 查询:通过模型

发布于 2024-11-27 02:48:43 字数 214 浏览 1 评论 0原文

如何查询具有“has_many :through”关系的特定分支机构公司

  #company.rb
  has_many :branch_choices
  has_many :branches, :through => :branch_choices

“查找分支机构 ID 为 3 的所有公司”

How to query for Companies with a certain Branch in a "has_many :through" relationship?

  #company.rb
  has_many :branch_choices
  has_many :branches, :through => :branch_choices

"Find all companies with Branch ID 3"

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

枕头说它不想醒 2024-12-04 02:48:43
Company.includes(:branches).where(:branches => {:id => 3})

Branch.find(3).companies

更新
实际上,第一个片段有一个缺点:它急切地与公司一起加载分支。为了避免这种开销,您可以考虑使用左连接:

Company.
  joins("LEFT JOIN `branch_choices` ON `branch_choices`.`company_id` = `companies`.`id`").
  where(:branch_choices => {:branch_id => 3})
Company.includes(:branches).where(:branches => {:id => 3})

or

Branch.find(3).companies

UPDATE
Actually, there's one downside to the first snippet: it eagerly loads branches along with the companies. To avoid this overhead you may consider using a left join:

Company.
  joins("LEFT JOIN `branch_choices` ON `branch_choices`.`company_id` = `companies`.`id`").
  where(:branch_choices => {:branch_id => 3})
孤寂小茶 2024-12-04 02:48:43

以下应该可以解决问题并避免额外的查询:

Company.joins(:branches).where(:branches => {:id => 3})

The following should do the trick and avoids extra queries:

Company.joins(:branches).where(:branches => {:id => 3})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文