Hi,
I want to perform some logging when a SqlTransaction is committed or rolledback. I see that SqlTransaction class does not expose any such events like OnCommit or OnRollback.
damn! SqlTransaction class is sealed, I cant help it out with inheritance.
Now, what must be the reason they have not allowed these events to happen ?
Is there a way to do these events with SqlTransaction or any such alternate of SqlTransaction that provides ?
Thanks.