ruby on Rails 使用 where 子句获取活动记录

发布于 2024-11-13 07:04:58 字数 227 浏览 1 评论 0原文

我有一个简单的问题 - 基本上我想获取一些符合某些条件的模型 X 的所有 ActiveRecords。我尝试在这里使用 X.where 方法,但我不确定它是如何工作的。基本上,我的模型 X has_many Y。

我有模型 Y 对象的 id 列表。我想找到所有模型 X,其 has_many Y 中至少有一个这些 id。

有没有一种简单的方法可以使用 X.where 来做到这一点?或者我需要更复杂的sql?

I have a simple question - basically I want to fetch all ActiveRecords of some model X which adhere to some conditions. I am trying to use the X.where method here but I am not sure how it will work. Basically, my model X has_many Y.

I have a list of ids for model Y objects. I want to find all of model X which has at least one of those ids in its has_many Y.

Is there a simple way I can do this using X.where? Or do i need more complicated sql?

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

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

发布评论

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

评论(1

怎言笑 2024-11-20 07:04:58

这就是我要做的:

Modelx.joins(:modelys).where(:modelys => { :id => list_of_ids }).all 

我更喜欢的另一个解决方案是使用作用域:

def Modelx < ActiveRecord::Base
  has_many :modelys
  has_many :modelzs

  scope :has_modely_ids, lambda { |ids| joins(:modelys).where(:modelys => { :id => [*ids] }) }
  scope :has_modelz_ids, lambda { |ids| joins(:modelzs).where(:modelzs => { :id => [*ids] }) }

end

然后你可以做类似的事情:

Modelx.has_modely_ids(y_ids).all
Modelx.has_modelz_ids(z_ids).all

modelx_with_ys = Modelx.has_modely_ids(y_ids)
modelx_with_zs = Modelz.has_modely_ids(y_ids)

或链接:(只要记住当你真正想要运行查询时调用 all )

modelx_with_y_and_zs = Modelx.has_modely_ids(y_ids).has_modelz_ids(z_ids)
modelx_with_y_and_zs = modelx_with_ys.has_modelz_ids(z_ids)

Here is what I would do:

Modelx.joins(:modelys).where(:modelys => { :id => list_of_ids }).all 

Another solution that I prefer is to use scopes:

def Modelx < ActiveRecord::Base
  has_many :modelys
  has_many :modelzs

  scope :has_modely_ids, lambda { |ids| joins(:modelys).where(:modelys => { :id => [*ids] }) }
  scope :has_modelz_ids, lambda { |ids| joins(:modelzs).where(:modelzs => { :id => [*ids] }) }

end

then you can do stuff like:

Modelx.has_modely_ids(y_ids).all
Modelx.has_modelz_ids(z_ids).all

modelx_with_ys = Modelx.has_modely_ids(y_ids)
modelx_with_zs = Modelz.has_modely_ids(y_ids)

or chaining: (just rememeber to call all when you actually want to run the query)

modelx_with_y_and_zs = Modelx.has_modely_ids(y_ids).has_modelz_ids(z_ids)
modelx_with_y_and_zs = modelx_with_ys.has_modelz_ids(z_ids)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文