I know NHibernate supports ambient transactions, because NHibernate sessions enlists in the ambient transactions while inside a transaction scope. However, there are some oddities, consider the follow
We are doing an import process from a source database to a destination database.We need to run these imports frequently in an automated fashion.
I have a child TransactionScope within a parent TransactionSope. The child TransactionScope is created, executed, and committed multiple times under the singular parent TransactionScope.
The TransactionScope expects a call to its Complete method as follows. Otherwise the transaction will not be committed.
I created a sqlconnection, CN1. Then this CN1 is opened. Later in the code there is a transactionscope. If I execute a sql command on this CN1 connection, is this within transaction?
I need to know the best way to do the following. I have nested business level APIs (say level 1 & level 2). L1 needs to call L2. Both APIs use the database layer directly at their own nesting leve
(I know the circumstances surrounding the DTC and promoting a transaction can be a bit mysterious to those of us not in the know, but let me show you how my company is doing things, and if you can te开
I have a problem that I know is something local, related to transaction scope, probably MSDTC (I don\'t know very much about it).
I need a help. Let me first explain the scenario with a small sample. Suppose I have a Students table with columns:
I am just starting to work with using TransactionScope, I find that there are always unexpected things I run into that take forever to debug.