sqlsugar/Src/Asp.Net/SqlSugar/Abstract/DeleteProvider/SplitTableDeleteProvider.cs

99 lines
3.1 KiB
C#
Raw Permalink Normal View History

2025-05-11 16:20:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace SqlSugar
{
public class SplitTableDeleteProvider<T> where T : class, new()
{
public ISqlSugarClient Context;
public DeleteableProvider<T> deleteobj;
public IEnumerable<SplitTableInfo> Tables { get; set; }
public int ExecuteCommand()
{
if (this.Context.Ado.Transaction == null)
{
try
{
this.Context.Ado.BeginTran();
var result = _ExecuteCommand();
this.Context.Ado.CommitTran();
return result;
}
catch (Exception ex)
{
this.Context.Ado.RollbackTran();
throw ex;
}
}
else
{
return _ExecuteCommand();
}
}
public async Task<int> ExecuteCommandAsync()
{
if (this.Context.Ado.Transaction == null)
{
try
{
this.Context.Ado.BeginTran();
var result = await _ExecuteCommandAsync();
this.Context.Ado.CommitTran();
return result;
}
catch (Exception ex)
{
this.Context.Ado.RollbackTran();
throw ex;
}
}
else
{
return await _ExecuteCommandAsync();
}
}
internal int _ExecuteCommand()
{
var result = 0;
var sqlobj = deleteobj.ToSql();
foreach (var item in Tables)
{
var newsqlobj = GetSqlObj(sqlobj, item.TableName);
result +=this.Context.Ado.ExecuteCommand(newsqlobj.Key, newsqlobj.Value);
}
return result;
}
internal async Task<int> _ExecuteCommandAsync()
{
var result = 0;
var sqlobj = deleteobj.ToSql();
foreach (var item in Tables)
{
var newsqlobj = GetSqlObj(sqlobj, item.TableName);
result +=await this.Context.Ado.ExecuteCommandAsync(newsqlobj.Key, newsqlobj.Value);
}
return result;
}
private KeyValuePair<string, List<SugarParameter>> GetSqlObj(KeyValuePair<string, List<SugarParameter>> keyValuePair,string asName)
{
List<SugarParameter> pars = new List<SugarParameter>();
string sql = keyValuePair.Key;
if (keyValuePair.Value != null)
{
pars = keyValuePair.Value.Select(it => new SugarParameter(it.ParameterName, it.Value)).ToList();
}
sql = Regex.Replace(sql, deleteobj.EntityInfo.DbTableName, asName,RegexOptions.IgnoreCase);
return new KeyValuePair<string, List<SugarParameter>>(sql,pars);
}
}
}