| 12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SqlSugar
- {
- public class SqlSugarTransaction:IDisposable
- {
- private readonly SqlSugarClient context;
- public SqlSugarTransaction(SqlSugarClient client)
- {
- context = client;
- context.BeginTran();
- }
- public void CommitTran()
- {
- context.CommitTran();
- }
- public void RollbackTran()
- {
- context.RollbackTran();
- }
- public void Dispose()
- {
- context.RollbackTran();
- }
- }
- }
|