如果我有两个模型 - parent
andchild
和 parent has_many 孩子,并且我有一个父母数组并且想要检索所有这些父母的所有孩子,有没有一种方法可以在 Rails 中执行此操作而无需手动编写 SQL 语句?
这就是我想要做的:
@parents = Parent.where("[various conditions]")
@children = @parents.children
如果我有两个模型 - parent
andchild
和 parent has_many 孩子,并且我有一个父母数组并且想要检索所有这些父母的所有孩子,有没有一种方法可以在 Rails 中执行此操作而无需手动编写 SQL 语句?
这就是我想要做的:
@parents = Parent.where("[various conditions]")
@children = @parents.children