ActiveRecord クエリを使用して、特定の親テーブルに対応するすべての子行を選択するにはどうすればよいですか。
create table foo (id, ...)
create table bar (id, foo_id, ...)
select * from foo where key = ?
# The above return a single row or multiple rows.
select * from bar where foo_id in <ids from the above output>
どうすればこれを達成できますか?