More specifically...
I am trying to make a copy of my collection of business objects that I can revert back to if a user discards the changes he/she makes.
To try to solve this, I have tried to use Copy, Clone and CopyTo a new collection and all of these methods create a new collection that does NOT retain any edits I have made to the collection. Meaning, none of those methods retain which items were new/deleted/changed etc. Is there a way to do this?
Mike