.NET TransactionScope class and T-SQL TRAN COMMIT and ROLLBACK(.NET TransactionScope 类和 T-SQL TRAN COMMIT 和 ROLLBACK)
问题描述
我目前正在编写一个应用程序,该应用程序需要为我的业务实体进行多次插入、更新和删除操作.我使用 TransactionScope 类来保证所有存储过程都可以作为单个工作单元提交或回滚.
I am current writing an application that will require multiple inserts, updates and deletes for my business entity. I am using the TransactionScope class to guarantee all the stored procedures can commit or roll back as a single unit of work.
我的问题是,如果我在我的 .NET 类库中使用 TransactionScope 类,我还需要使用 COMMIT TRAN 和 ROLLBACK TRAN 是我的每个存储过程吗?
My question is, I am required to also use COMMIT TRAN and ROLLBACK TRAN is each of my stored procedures if I am using the TransactionScope class in my .NET class library?
推荐答案
2005 年不需要,2000 年我会,另外,我通常将事务范围放在使用"块中.
ON 2005 its not necessary, on 2000 I would ,Also, i usually put the transactionscope in a "using" block.
与 2005 相比,在 2000 及更早版本上使用时存在一些性能问题.
There are some performance issues when using it on 2000 and older vs 2005.
参见 这里
谢谢
这篇关于.NET TransactionScope 类和 T-SQL TRAN COMMIT 和 ROLLBACK的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:.NET TransactionScope 类和 T-SQL TRAN COMMIT 和 ROLLBACK
基础教程推荐
- C# - 如何列出发布到 ASPX 页面的变量名称和值 2022-01-01
- 如何使用OpenXML SDK将Excel转换为CSV? 2022-01-01
- 当键值未知时反序列化 JSON 2022-01-01
- 创建属性设置器委托 2022-01-01
- 使用 SED 在 XML 标签之间提取值 2022-01-01
- 覆盖 Json.Net 中的默认原始类型处理 2022-01-01
- Page.OnAppearing 中的 Xamarin.Forms Page.DisplayAlert 2022-01-01
- 我什么时候应该使用 GC.SuppressFinalize()? 2022-01-01
- 从 VB6 迁移到 .NET/.NET Core 的最佳策略或工具 2022-01-01
- C# - 将浮点数转换为整数...并根据余数更改整数 2022-01-01