I am keeping my two methods in a single transaction. Both the methods are working on same tables.
When I keep both in a single transaction, the second one when go to operate on the same tables, it doesn't execute.
I tried to keep both the methods in different transaction , after committing the first one I begin the second one but the same problem occurs.
Then I tried making different objects of session and still the result is same.
I want to keep these methods in transactions . kindly suggest me the suitable way to handle this. I don't want to make any changes in the stored procedure , I want to handle it on C# code level in my windows application.
Regards, Nitish