I’ve got this model
class Question < ActiveRecord::Base
has_many :votes
def to_s
"hello?"
end
end
and when I attempt to display a Question with <%= @question %>
I get this…
#<ActiveRecord::Relation:0x1042b2960>
obviously I expect to get hello?
Are you sure
@questionis a Question? Theto_sresponse you are getting makes me think otherwise.It looks like you have a ActiveRecord::Relation, not a Question.