Hi,
Just wondering if there's any way to suppress the ORMEntityIsDeletedException.
Seems to me like this exception is in many ways pointless. I understand that the entity has been removed from persistent storage but you should still be able to access properties from it.
I have a case where complicated logic is used to add/remove line items in the business layer and the UI receives an event telling it which items have been removed (as some entities may have related custom controls to be stripped from the screen). Unfortunately though this generates the EntityIsDeleted Exception.
I'd rather not iterate though all line items on the screen to rebuild the UI. I'd rather tell the UI layer the ones that have been deleted and let it handle it.
Any one have any thoughts?