使用Asyc提高方法的性能并等待

时间:2016-06-22 06:24:35

标签: c# devexpress

public void Calc()
{
    Method1(true); //Qty*rate 
    Method2(true); //perform another work
    this.Save();
    if (this.Session.InTransaction)         
        this.Session.CommitTransaction();
}

我希望使用Async和Await提高性能

1 个答案:

答案 0 :(得分:0)

如果您正在谈论在事务中进行的异步提交更改,请查看Session.CommitTransactionAsync方法。

如果您正在谈论其他内容,则应提供更多信息或联系XPO供应商directly