We are using Adapters.
We are wanting to add username (possibly other values) to each table acted on during persistance operations. Ie Every Entity and EntityCollection Save (insert & Update) and the EntityDirect operations.
We want to do this in 1 or 2 places if possible...
Is this possible ?
How can I do this ?
I have seen on the Forum people derive a class from the Adapter and override the OnSaveEntity() - but this won't do anything for the Direct Entity updates!
Is there someway I can override (add to) the Adapter query generation for all persistance operations to append the Username to the query generated ?
It wont do anything for Stored-Proc's, but we can handle those seperately...