如何在可取消的 async/await 中处理 TransactionScope?

How to dispose TransactionScope in cancelable async/await?(如何在可取消的 async/await 中处理 TransactionScope?)
本文介绍了如何在可取消的 async/await 中处理 TransactionScope?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试使用新的 async/await 功能来异步处理数据库.由于某些请求可能很长,我希望能够取消它们.我遇到的问题是 TransactionScope 显然具有线程关联性,而且似乎在取消任务时,它的 Dispose() 在错误的线程上运行.

I'm trying to use the new async/await feature to asynchronously work with a DB. As some of the requests can be lengthy, I want to be able to cancel them. The issue I'm running into is that TransactionScope apparently has a thread affinity, and it seems that when canceling the task, its Dispose() gets ran on a wrong thread.

具体来说,当调用 .TestTx() 时,我在 task.Wait () 上得到以下 AggregateException 包含 InvalidOperationException代码>:

Specifically, when calling .TestTx() I get the following AggregateException containing InvalidOperationException on task.Wait ():

"A TransactionScope must be disposed on the same thread that it was created."

代码如下:

public void TestTx () {
    var cancellation = new CancellationTokenSource ();
    var task = TestTxAsync ( cancellation.Token );
    cancellation.Cancel ();
    task.Wait ();
}

private async Task TestTxAsync ( CancellationToken cancellationToken ) {
    using ( var scope = new TransactionScope () ) {
        using ( var connection = new SqlConnection ( m_ConnectionString ) ) {
            await connection.OpenAsync ( cancellationToken );
            //using ( var command = new SqlCommand ( ... , connection ) ) {
            //  await command.ExecuteReaderAsync ();
            //  ...
            /
                本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!
                
上一篇:.NET TransactionScope 类和 T-SQL TRAN COMMIT 和 ROLLBACK 下一篇:为什么 TransactionScope 不适用于实体框架?
相关文档推荐 遍历属性时 ActiveDirectory 错误 0x8000500c ActiveDirectory error 0x8000500c when traversing properties(遍历属性时 ActiveDirectory 错误 0x8000500c) 使用通配符按 samaccountname 搜索 search by samaccountname with wildcards(使用通配符按 samaccountname 搜索) 获取给定 UserPrincipal 的组列表 Get the list of Groups for the given UserPrincipal(获取给定 UserPrincipal 的组列表) 你能在 C# 中找到 Active Directory 用户的主要组吗? Can you find an Active Directory User#39;s Primary Group in C#?(你能在 C# 中找到 Active Directory 用户的主要组吗?) 如何注册 System.DirectoryServices 以在 SQL CLR 用户函数中使用? How to register System.DirectoryServices for use in SQL CLR User Functions?(如何注册 System.DirectoryServices 以在 SQL CLR 用户函数中使用?) 从 LDAP 查询用户组 Query From LDAP for User Groups(从 LDAP 查询用户组)
栏目导航 前端开发Java开发C/C++开发Python开发C#/.NET开发php开发移动开发数据库 最新文章 • SqlConnection 如何管理IsolationLev... • SqlBulkCopy 是否自动启动事务?... • C#:将 null 传递给重载方法 - 调用哪... • “从服务器返回了一个推荐"从 C... • 自动将位图修剪到最小尺寸?... • 在 C# 中将 WriteableBitmap 转换为 ... • 无法在位图中设置调色板... • 在 .NET 中加载佳能 .CR2 文件... • 将位图设置为 MP3 的封面... • 在 C# 中将 32 位位图另存为 1 位 .b... • 用鼠标绘图会导致像素之间出现间隙... • C#:如何在使用位图时减少内存和 CPU ... 热门文章 • SqlConnection 如何管理IsolationLev... • SqlBulkCopy 是否自动启动事务?... • C#:将 null 传递给重载方法 - 调用哪... • “从服务器返回了一个推荐"从 C... • 自动将位图修剪到最小尺寸?... • 在 C# 中将 WriteableBitmap 转换为 ... • 无法在位图中设置调色板... • 在 .NET 中加载佳能 .CR2 文件... • 将位图设置为 MP3 的封面... • 在 C# 中将 32 位位图另存为 1 位 .b... • 用鼠标绘图会导致像素之间出现间隙... • C#:如何在使用位图时减少内存和 CPU ... 热门标签 织梦资讯网 织梦模板 dede 外语学校 织梦鬼故事 竞价网站源码 竞价培训网 门户网站 织梦二次开发 织梦笑话网 dedecms笑话网 织梦源码 网站建设 搞笑图片 织梦教程 旅游网站源码 织梦旅游网 学校培训 html5 企业织梦源码 医院源码 后台样式 移动营销页 整形医院 大学医院 新手建站 客服代码 洗衣机维修 企业网站 淘宝客 导航菜单 教育网站 学校源码 装修网站 装修模板 美容整形 女性健康 妈妈网 机械源码 建站公司 珠宝首饰 苹果网站 手机资讯 美女图片 织梦模版打包 妇科源码 安卓市场源码 男性时尚网 健康之家 app应用网站 笑话网站 下载站 美女图片网 中医院网站 家装网站源码 QQ网站 标牌网站 魔兽世界网 淘宝客源码 YY网站源码 别墅设计网站 服装搭配网 宝宝起名网 站长网站 婚庆网站 脑科医院源码 笑话源码 肝胆医院 意外怀孕源码 工作室
网站首页 - 免责声明- 最新公告- 充值相关 - 网站地图 Copyright © 2021-2022 深圳市沃梦达电子商务有限公司 All Rights Reserved. 粤ICP备14083021号