Correct Answer: tr = cn.BeginTransaction(IsolationLevel.Serializable);
Explanation:
Serializable is the highest isolation transaction level. It provide the highest possible level of protection against concurrent data errors. The correct syntax to begin a transaction with this transaction isolation level is: cn.BeginTransaction(IsolationLevel.Serializable)
Discussion & Comments