I have two models in a has_many relationship such that Log has_many Items. Rails then nicely sets up things like: some_log.items which returns all of the associ
some_log.items
Either of these should work:
Item.all(:conditions => {:log_id => some_log.id}, :order => "some_col DESC") some_log.items.all(:order => "some_col DESC")