mirror of
https://github.com/dotnetcore/FreeSql.git
synced 2026-02-19 06:40:57 +08:00
192 lines
7.6 KiB
C#
192 lines
7.6 KiB
C#
using FreeSql.Extensions.EntityUtil;
|
|
using FreeSql.Internal.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Data.Common;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FreeSql.Internal.CommonProvider
|
|
{
|
|
|
|
partial class UpdateProvider<T1>
|
|
{
|
|
#if net40
|
|
#else
|
|
async protected Task<int> SplitExecuteAffrowsAsync(int valuesLimit, int parameterLimit)
|
|
{
|
|
var ss = SplitSource(valuesLimit, parameterLimit);
|
|
var ret = 0;
|
|
if (ss.Length <= 1)
|
|
{
|
|
if (_source?.Any() == true) _batchProgress?.Invoke(new BatchProgressStatus<T1>(_source, 1, 1));
|
|
ret = await this.RawExecuteAffrowsAsync();
|
|
ClearData();
|
|
return ret;
|
|
}
|
|
if (_transaction == null)
|
|
this.WithTransaction(_orm.Ado.TransactionCurrentThread);
|
|
|
|
var before = new Aop.TraceBeforeEventArgs("SplitExecuteAffrowsAsync", null);
|
|
_orm.Aop.TraceBeforeHandler?.Invoke(this, before);
|
|
Exception exception = null;
|
|
try
|
|
{
|
|
if (_transaction != null || _batchAutoTransaction == false)
|
|
{
|
|
for (var a = 0; a < ss.Length; a++)
|
|
{
|
|
_source = ss[a];
|
|
_batchProgress?.Invoke(new BatchProgressStatus<T1>(_source, a + 1, ss.Length));
|
|
ret += await this.RawExecuteAffrowsAsync();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
using (var conn = await _orm.Ado.MasterPool.GetAsync())
|
|
{
|
|
_transaction = conn.Value.BeginTransaction();
|
|
var transBefore = new Aop.TraceBeforeEventArgs("BeginTransaction", null);
|
|
_orm.Aop.TraceBeforeHandler?.Invoke(this, transBefore);
|
|
try
|
|
{
|
|
for (var a = 0; a < ss.Length; a++)
|
|
{
|
|
_source = ss[a];
|
|
_batchProgress?.Invoke(new BatchProgressStatus<T1>(_source, a + 1, ss.Length));
|
|
ret += await this.RawExecuteAffrowsAsync();
|
|
}
|
|
_transaction.Commit();
|
|
_orm.Aop.TraceAfterHandler?.Invoke(this, new Aop.TraceAfterEventArgs(transBefore, "提交", null));
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_transaction.Rollback();
|
|
_orm.Aop.TraceAfterHandler?.Invoke(this, new Aop.TraceAfterEventArgs(transBefore, "回滚", ex));
|
|
throw ex;
|
|
}
|
|
_transaction = null;
|
|
}
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
exception = ex;
|
|
throw ex;
|
|
}
|
|
finally
|
|
{
|
|
var after = new Aop.TraceAfterEventArgs(before, null, exception);
|
|
_orm.Aop.TraceAfterHandler?.Invoke(this, after);
|
|
}
|
|
ClearData();
|
|
return ret;
|
|
}
|
|
async protected Task<List<T1>> SplitExecuteUpdatedAsync(int valuesLimit, int parameterLimit)
|
|
{
|
|
var ss = SplitSource(valuesLimit, parameterLimit);
|
|
var ret = new List<T1>();
|
|
if (ss.Length <= 1)
|
|
{
|
|
if (_source?.Any() == true) _batchProgress?.Invoke(new BatchProgressStatus<T1>(_source, 1, 1));
|
|
ret = await this.RawExecuteUpdatedAsync();
|
|
ClearData();
|
|
return ret;
|
|
}
|
|
if (_transaction == null)
|
|
this.WithTransaction(_orm.Ado.TransactionCurrentThread);
|
|
|
|
var before = new Aop.TraceBeforeEventArgs("SplitExecuteUpdatedAsync", null);
|
|
_orm.Aop.TraceBeforeHandler?.Invoke(this, before);
|
|
Exception exception = null;
|
|
try
|
|
{
|
|
if (_transaction != null || _batchAutoTransaction == false)
|
|
{
|
|
for (var a = 0; a < ss.Length; a++)
|
|
{
|
|
_source = ss[a];
|
|
_batchProgress?.Invoke(new BatchProgressStatus<T1>(_source, a + 1, ss.Length));
|
|
ret.AddRange(await this.RawExecuteUpdatedAsync());
|
|
}
|
|
}
|
|
else
|
|
{
|
|
using (var conn = await _orm.Ado.MasterPool.GetAsync())
|
|
{
|
|
_transaction = conn.Value.BeginTransaction();
|
|
var transBefore = new Aop.TraceBeforeEventArgs("BeginTransaction", null);
|
|
_orm.Aop.TraceBeforeHandler?.Invoke(this, transBefore);
|
|
try
|
|
{
|
|
for (var a = 0; a < ss.Length; a++)
|
|
{
|
|
_source = ss[a];
|
|
_batchProgress?.Invoke(new BatchProgressStatus<T1>(_source, a + 1, ss.Length));
|
|
ret.AddRange(await this.RawExecuteUpdatedAsync());
|
|
}
|
|
_transaction.Commit();
|
|
_orm.Aop.TraceAfterHandler?.Invoke(this, new Aop.TraceAfterEventArgs(transBefore, "提交", null));
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_transaction.Rollback();
|
|
_orm.Aop.TraceAfterHandler?.Invoke(this, new Aop.TraceAfterEventArgs(transBefore, "回滚", ex));
|
|
throw ex;
|
|
}
|
|
_transaction = null;
|
|
}
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
exception = ex;
|
|
throw ex;
|
|
}
|
|
finally
|
|
{
|
|
var after = new Aop.TraceAfterEventArgs(before, null, exception);
|
|
_orm.Aop.TraceAfterHandler?.Invoke(this, after);
|
|
}
|
|
ClearData();
|
|
return ret;
|
|
}
|
|
|
|
async protected Task<int> RawExecuteAffrowsAsync()
|
|
{
|
|
var sql = this.ToSql();
|
|
if (string.IsNullOrEmpty(sql)) return 0;
|
|
var dbParms = _params.Concat(_paramsSource).ToArray();
|
|
var before = new Aop.CurdBeforeEventArgs(_table.Type, _table, Aop.CurdType.Update, sql, dbParms);
|
|
_orm.Aop.CurdBeforeHandler?.Invoke(this, before);
|
|
var affrows = 0;
|
|
Exception exception = null;
|
|
try
|
|
{
|
|
affrows = await _orm.Ado.ExecuteNonQueryAsync(_connection, _transaction, CommandType.Text, sql, dbParms);
|
|
ValidateVersionAndThrow(affrows, sql, dbParms);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
exception = ex;
|
|
throw ex;
|
|
}
|
|
finally
|
|
{
|
|
var after = new Aop.CurdAfterEventArgs(before, exception, affrows);
|
|
_orm.Aop.CurdAfterHandler?.Invoke(this, after);
|
|
}
|
|
return affrows;
|
|
}
|
|
protected abstract Task<List<T1>> RawExecuteUpdatedAsync();
|
|
|
|
public abstract Task<int> ExecuteAffrowsAsync();
|
|
public abstract Task<List<T1>> ExecuteUpdatedAsync();
|
|
#endif
|
|
}
|
|
}
|