gpt4 book ai didi

.net - 将事务与业务流程和存储库模式一起使用

转载 作者:行者123 更新时间:2023-12-04 12:26:04 25 4
gpt4 key购买 nike

我有一种情况(我猜这很标准),我需要执行一些业务计算并在数据库中创建一堆记录。如果在任何时候出现任何问题,我需要从数据库中回滚所有内容。显然我需要某种交易。我的问题是我在哪里实现事务支持。这是我的例子

//BillingServices - This is my billing service layer. called from the UI
public Result GenerateBill(BillData obj)
{
//Validate BillData

//Create a receivable line item in the receivables ledger
BillingRepository.Save(receivableItem);

//Update account record to reflect new billing information
BillingRepository.Save(accountRecord);

//...do a some other stuff
BillingRepository.Save(moreStuffInTheDatabase);
}

如果对数据库的任何更新失败,我需要将其他更新回滚并退出。我是否只是通过我可以调用的存储库公开一个 Connection 对象

Connection.BeginTransaction()

还是我只是在服务层中进行验证,然后在存储库中调用一种方法来保存所有对象并处理事务?这对我来说似乎不太正确。似乎它会迫使我在数据层中投入大量的业务逻辑。

什么是正确的方法?如果我需要跨越存储库(或者那将是糟糕的设计)怎么办?

最佳答案

我假设您在这里使用.NET。在这种情况下,您可以简单地将整个代码部分包装在 using statement 中。与 TransactionScope 实例,它将为您处理事务语义。您只需调用 Complete method在末尾:

//BillingServices - This is my billing service layer. called from the UI
public Result GenerateBill(BillData obj)
{
// Create the transaction scope, this defaults to Required.
using (TransactionScope txScope = new TransactionScope())
{
//Validate BillData

//Create a receivable line item in the receivables ledger
BillingRepository.Save(receivableItem);

//Update account record to reflect new billing information
BillingRepository.Save(accountRecord);

//...do a some other stuff
BillingRepository.Save(moreStuffInTheDatabase);

// Commit the transaction.
txScope.Complete();
}
}

如果发生异常,这具有不调用 Complete 的效果。退出代码块时; Dispose methodTransactionScope IDisposable interface 的实现在 using 的范围内调用语句退出。

Dispose调用时,它会检查事务是否完成(此状态在 Complete 成功时设置)。如果未设置该状态,它将执行回滚。

然后您可以将它嵌套在其他 TransactionScope 中实例(在同一线程上的调用堆栈中更深)以跨多个存储库创建更大的事务。

关于.net - 将事务与业务流程和存储库模式一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/678922/

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