I have a comments object that I can save changes with when a form is submitted through the following code, inside the controller.
db.Comments.AddObject(comment);
db.SaveChanges();
The comment object may have one too many properties? E.g.. firstname, lastname, email and address. How can I pull the individual properties? Out of the object so I can manipulate them before I save changes, inside the controller?
Found the answer: