Hi all, I would like to make two database operation in one transaction. Those two operations are
- Do one insert operation.
- Create one user (using membership - sql membership provider)
I tried TransactionScope but it went to distributed transaction at that line: -- Membership.CreateUser("test", "password", "[email protected]");
How can I do this with lightweight transaction since I have only DB?
Thanks in advance.