I want to create a new object, passing it some initial values, and then saving to the db and return the saved object.
how can I do this?
example:
- create a new user object
- initiaze the user.user_age property to 35
- save and return the saved object b/c I need access to the user.user_id value.
What's the ruby way of doing this?