Displaying 1 result from an estimated 1 matches for "tracking_definit".
2005 Dec 16
0
Quick ORM question
...@td.id, 10) || []
My development log file shows 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
---------------------------------...