阿瑞尔,如何加入
鉴于
class Category < ActiveRecord::Base
has_many :products, :order => 'name ASC'
end
使用 Rails 3 堆栈,我如何查询“拥有”产品的所有类别?
Given
class Category < ActiveRecord::Base
has_many :products, :order => 'name ASC'
end
Using the Rails 3 stack, how can I query for all categories that 'have' products?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 ARel(不是 ActiveRecord)中,我们将执行以下操作:
In ARel (NOT ActiveRecord) we will do the following:
另一种更简单的方法是使用 ActiveRecord 查询接口的
join
与 ARel 结合用于条件语句:在 sqlite3 中生成以下 sql:
在 postgres 中生成以下 sql(注意 ILIKE):
这允许您可以简单地加入,但仍然可以将 ARel 匹配器的抽象抽象到您的 RDBMS。
Another, simpler, approach is to use the ActiveRecord query interface's
join
in conjunction with ARel for the conditional statement:Generates the following sql in sqlite3:
And the following sql in postgres (notice the ILIKE):
This allows you to join with simplicity, but still get the abstraction of the ARel matcher to your RDBMS.