gpt4 book ai didi

c# - 如何使用工作单元和存储库模式回滚事务?

转载 作者:行者123 更新时间:2023-11-30 15:06:38 26 4
gpt4 key购买 nike

我有一个用户存储库,它执行所有用户数据访问。我还有一个工作类单元来管理我的存储库的连接和事务。如果我的存储库中发生错误,我如何有效地回滚我的工作类单元上的事务?

在我的 UserRepository 上创建方法。我正在使用 Dapper 进行数据访问。

try
{
this.Connection.Execute("User_Create", parameters, this.Transaction,
commandType: CommandType.StoredProcedure);
}
catch (Exception)
{
//Need to tell my unit of work to rollback the transaction.
}

我将在我的工作单元构造函数中创建的连接和事务都传递到我的存储库。下面是我的工作单元的一个属性。

public UserRepository UserRepository
{
get
{
if (this._userRepository == null)
this._userRepository =
new UserRepository(this._connection, this._transaction);
return this._userRepository;
}
}

我希望找出最佳方法。

* 更新 *在对工作单元模式进行更多研究后,我认为我在我的示例中完全错误地使用了它。

最佳答案

Dapper 支持 TransactionScope ,它提供了一个 Complete() 方法来提交事务,如果您不调用 Complete(),事务将中止。

using (TransactionScope scope = new TransactionScope())
{
//open connection, do your thing
scope.Complete();
}

关于c# - 如何使用工作单元和存储库模式回滚事务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7541063/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com