views:

19

answers:

1

I have a class Foo which has_many Bars. Foo has an attribute, some_id. I want to Retrieve all Bar instances where the Foo has some_id = N. In SQL this translates into something like:

select * from bar inner join foo on foo.id = bar.foo_id WHERE foo.some_id = N

+1  A: 

It would be something like:

Bar.all :joins => :foo, :conditions => {:foos => {:some_id => N}}

x1a4