事务记账
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了事务记账相关的知识,希望对你有一定的参考价值。
var transactionOption = new TransactionOptions { IsolationLevel = IsolationLevel.Serializable, Timeout = TimeSpan.FromMilliseconds(10 * 60 * 1000) };
using (var scope = isTrans ? new TransactionScope(TransactionScopeOption.Required, transactionOption) : null)
{
#region 第一大步:记账前检查
#region 第一小步:事项(记账前检查)
#endregion
#region 第二小步:交易(记账前检查)
#endregion
#region 第三小步:账户(记账前检查)
#endregion
#region 第四大步:记账后处理
#region 第一小步:事项(记账后处理)
#endregion
#region 第二小步:交易(记账后处理)
#endregion
#endregion
if (isTrans)
{
scope.Complete();
}
}
以上是关于事务记账的主要内容,如果未能解决你的问题,请参考以下文章