Error in TransactionScope #4676
-
We have an editable collection that can have potentially thousands of records. We update our collection by using [Transactional(TransactionalTypes.TransactionScope)] in the BusinessListBase's DataPortal_Update. This method is the default implementation, we aren't doing anything in it. In the child data portal methods, we actually call the database, using a data access layer. using (var ctx = ConnectionManager<SqlConnection>.GetManager(ConnectionStrings.ourconnectionstring))
{
using (var cm = ctx.Connection.CreateCommand())
{.....
......
} We started getting this error Kind regards |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It looks like I can increase the time out for TransactionScope |
Beta Was this translation helpful? Give feedback.
-
Hi Chicagoan. How/where did you change the time out? I am facing the same issue on child objects. |
Beta Was this translation helpful? Give feedback.
It looks like I can increase the time out for TransactionScope