--
Posted via http://www.ruby-forum.com/.
If you already have the results of a find operation, @records for
example (which is like an array with extra functionality) then to find
the record with id 10 within that by
@record10 = @records.find(10)
Similarly you can do other active record find operations involving
conditions, order and so on.
Or of course you can simply do Record.find(10) to get the original
record from the db as Tim has pointed out.
Colin