Is there an event on our Entity class that can tell you when a Entity has been added or removed from the DataSet? For example, I want to be notified in my app whenever an entity arrives into or is removed from my persistence manager via the following paths:
- I execute an RdbQuery and retrieve an entity into my dataset from the database.
- I create a new entity and add it to the manager via the AddToManager method.
- I import an entity from another persistence manager via the ImportEntities method.
- I detach an Entity and it is removed from the persistence manager.
- I re fetch an Entity and it no longer exists in the database and it is removed from my manager.