search for: entityadministr

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

2006 Jan 18
6
Using conditions in ActiveRecord
This bit of code finds several groups; all those which have entity_id''s of ''1'' OR ''2'' OR ''3'', as you would expect: ee = [ 1, 2, 3 ] groups = Group.find(:all, :conditions => "entity_id in (" + ee.join (",") + ")") But this bit of code only finds groups which have entity_id''s of