Class Item
has_many :prices
has_one :current_price
end
Class Price
belongs_to :item
#date the price was set attribute
#price attribute
end
How can i find all the items im selling including (eagerly loaded) the current price (the price which holds the max() date for the given item) in the "current_price" field?
E.g.:
Table Items:
id=1 | name="the_hobbit"
Table Prices:
id=1 | item_id=1 | price=10.99$ | date=2010-01-01
id=2 | item_id=1 | price=12.59$ | date=2009-04-23
id=3 | item_id=1 | price=19.99$ | date=2013-01-03
@item = Items.find(1)
@item.current_price # should print "19.99$"
EDIT: I believe my problem is called "greatest-n-per-group" but i cant figure out how to do this properly wth a "has_one" association ...
@item.prices.last– nishanthan Jan 18 at 6:07