用户登录
用户注册

分享至

如何使用 dapper.net 的交易?

  • 作者: 绯梦二十三_
  • 来源: 51数据库
  • 2022-10-20

问题描述

我想在多个表上运行多个插入语句.我正在使用 dapper.net.我看不到任何处理 dapper.net 交易的方法.

I would like to run multiple insert statements on multiple tables. I am using dapper.net. I don't see any way to handle transactions with dapper.net.

请分享您对如何通过 dapper.net 使用交易的想法.

Please share your ideas on how to use transactions with dapper.net.

推荐答案

这里是代码片段:

using System.Transactions;    
....    
using (var transactionScope = new TransactionScope())
{
    DoYourDapperWork();
    transactionScope.Complete();
}

请注意,您需要添加对 System.Transactions 程序集的引用,因为默认情况下不引用它.

Note that you need to add reference to System.Transactions assembly because it is not referenced by default.

软件
前端设计
程序设计
Java相关