| 8/16/2006 2:32:15 PM |
When I use a TransactionScope against Oracle I'm running into problems. We create a transaction scope and within it delete a set of data as well as persist a list of objects. When the OR Mapper tries to save the list of objects the following error is thrown:
OracleConnection does not support parallel transactions
using(TransactionScope tx = new TransactionScope()) {
// do operations that delete data
// do operation that saves a list of items at once using PersistChanges
}
Is there a way to use TransactionScope with the mapper against Oracle in this type of scenario?
|