我有两个 WCF 函数,都在使用:
using (TransactionScope transactionScope = new TransactionScope(TransactionScopeOption.Required, new TransactionOptions { IsolationLevel = IsolationLevel.Serializable }))
{
// Code here
}
如果我同时调用两个函数,一个函数会一直等到另一个函数完成吗?我需要这个来保证数据的一致性。
我使用 SQL Server 2008 和 Entity Framework 5.0。