If you need to use build or new on a has_one association, its a little different then the has_many.


# has_many, this will throw errors on a has_one
@post.comments.build
# OR
@post.comments.new

# on a has_one association
@post.build_comment


Related External Links: