Displaying 1 result from an estimated 1 matches for "td_id".
Did you mean:
t_id
2005 Dec 16
0
Quick ORM question
...ows that rails makes 2 calls to database! Is
rails ORM not smart enough to know to not load the lvalue of assignment thus
causing another expensive db call? Below are the stubbed models and a log
snip.
class Entry < ActiveRecord::Base
belongs_to :tracking_definition
def self.find_recent(td_id, limit=10)
find(:all, :conditions => ["tracking_definition_id = ?", td_id], :limit
=> limit)
end
end
class Item < ActiveRecord::Base
has_many :entries
end
------------------- log snip from this one line
---------------------------------------------------
[4;36;1mItem...