Hi,
I'm wondering if it is possible to do direct SQL updates of my own in the same transaction as NHibernate is using to update my persistent objects?
Hi,
I'm wondering if it is possible to do direct SQL updates of my own in the same transaction as NHibernate is using to update my persistent objects?
Yes, it's possible with ITransaction.Enlist(IDbCommand)
.
See this blog post for details.