I'm new to rails and this might seem obvious, but couldn't find a answer.
when i do
u = User.where("email=?", email_string)
u.name = "new name"
doesn't work i keep getting
NoMethodError: undefined method `name=' for #<ActiveRecord::Relation:0x1049c2890>
but if i change
u = User.where("email=?", email_string)
to
u = User.find_by_email(email_string)
i can see my changes being persisted and no error thrown.
So what am i missing. is it that .where returns a read only object or something ?
whereis returning a collection/array where asfind_by_emailreturns a single record? – Paul Creasey Sep 16 '11 at 9:50