well my problem is: I have a method like: class Manager { void method1() { // save object in database to get ID
I use TransactionScrope in my code to execute 50 SQL command on SQL Server 2008 R2. this is an example for my code:
In my Project, DAL Is WCF service .Net4.0. using database oracle 11g. I am using transaction scope in WCF(server side).
I am gonna build a service using 3-tier architecture and I am really worried about how to handle operations in a transacted way.
I have calls to the Membership API and the Roles API in the same transaction scope. I\'ve read that opening more than one connection causes escalation r开发者_如何学Goequiring distributed transactions
I have several code methods that look like this: using (var connection = this.connectionFactory.GetConnection())
I\'m using NHibernate 3.1.0 with the MySql Connector 6.3.5. As a general rule my repository methods are wrapped in an NHibernate transaction. However the service or application code calling the reposi
I was testing to see how nested transactions work, and uncovered this disturbing and unexpected behavior.
I\'m using TransactionScope to do some batch insert and updates. 开发者_开发问答Problem is, I\'m getting timeout exceptions on a 30 min long operation even when I set the timeout of the TransactionSco
I am using SI configured with a jms:message-driven-channel-adapter.My use case is to receive a message from the queue, save it via JDBC to a database, commit the message from the queue, and then let t