Files
SqlSugar/Src/Asp.Net/SqlSugar/Entities/SqlSguarTransaction.cs
2021-09-01 00:28:25 +08:00

24 lines
472 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
public class SqlSguarTransaction
{
private readonly SqlSugarClient context;
public SqlSguarTransaction(SqlSugarClient client)
{
context = client;
context.BeginTran();
}
public void Dispose()
{
context.RollbackTran();
}
}
}