I have a question for you with regards deleting entities. In the older version we used to call the delete on an entity but we could still retain the reference of that entity which we pass to PersistanceManager.SaveChanges(IList pDatarows….)
With the new DevForce (generics), the Entity is getting deleted from the EntityList<T> after a Delete() is called on the Entity. And so, the reference is lost and the only option we have is to call PersistanceManager.SaveChanges() [without passing any entity itself].
Is there a way to delete an entity and get a reference to that entity and pass it to SaveChanges of PersistenceManager to exclusively call savechanges on those specific entity list?
I appreciate your response on this.