search for: processed_bs

Displaying 1 result from an estimated 1 matches for "processed_bs".

Did you mean: processed_
2006 May 04
0
Complement set association to has_many/through?
I have two models, A and B, with a straightforward many-to-many has_many/through association between them. So, in A I have the association processed_bs and in B I have processedby_as. This works fine. Now, I would like to also have an association unprocessed_bs in A, which holds all Bs that _aren''t_ in processed_bs. I can write a method in A that returns all those objects as a list (using B.find(:all,:conditions)), but that''s a...