I have an Article which has_many Comments.
When i create comments i can use "new" to build them in memory, and the comment records only get created when the article is saved.
Does such a mechanism exist for marking comments for deletion, so that their records are only removed when the article is saved?
thanks.