230 lines
9.2 KiB
C#
230 lines
9.2 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SqlSugar
|
|||
|
{
|
|||
|
public class SplitInsertable<T> where T:class ,new()
|
|||
|
{
|
|||
|
public SqlSugarProvider Context;
|
|||
|
internal SplitTableContext Helper;
|
|||
|
public EntityInfo EntityInfo;
|
|||
|
public SplitType SplitType;
|
|||
|
internal IInsertable<T> Inserable { get; set; }
|
|||
|
internal List<KeyValuePair<string,object>> TableNames { 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();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public List<long> ExecuteReturnSnowflakeIdList()
|
|||
|
{
|
|||
|
if (this.Context.Ado.Transaction == null)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
this.Context.Ado.BeginTran();
|
|||
|
var result = _ExecuteReturnSnowflakeIdList();
|
|||
|
this.Context.Ado.CommitTran();
|
|||
|
return result;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
this.Context.Ado.RollbackTran();
|
|||
|
throw ex;
|
|||
|
}
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
return _ExecuteReturnSnowflakeIdList();
|
|||
|
}
|
|||
|
}
|
|||
|
public async Task<List<long>> ExecuteReturnSnowflakeIdListAsync()
|
|||
|
{
|
|||
|
if (this.Context.Ado.Transaction == null)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
this.Context.Ado.BeginTran();
|
|||
|
var result = await _ExecuteReturnSnowflakeIdListAsync();
|
|||
|
this.Context.Ado.CommitTran();
|
|||
|
return result;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
this.Context.Ado.RollbackTran();
|
|||
|
throw ex;
|
|||
|
}
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
return await _ExecuteReturnSnowflakeIdListAsync();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public long ExecuteReturnSnowflakeId()
|
|||
|
{
|
|||
|
return ExecuteReturnSnowflakeIdList().FirstOrDefault();
|
|||
|
}
|
|||
|
public async Task<long> ExecuteReturnSnowflakeIdAsync()
|
|||
|
{
|
|||
|
var list = await ExecuteReturnSnowflakeIdListAsync();
|
|||
|
return list.FirstOrDefault();
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
internal int _ExecuteCommand()
|
|||
|
{
|
|||
|
CreateTable();
|
|||
|
var result = 0;
|
|||
|
var groups = TableNames.GroupBy(it => it.Key).ToList();
|
|||
|
var parent = ((InsertableProvider<T>)Inserable);
|
|||
|
var names = parent.InsertBuilder.DbColumnInfoList.GroupBy(it => it.DbColumnName).Select(i => i.Key).ToList();
|
|||
|
foreach (var item in groups)
|
|||
|
{
|
|||
|
var list = item.Select(it => it.Value as T).ToList();
|
|||
|
var groupInserable = (InsertableProvider<T>)this.Context.Insertable<T>(list);
|
|||
|
groupInserable.InsertBuilder.TableWithString = parent.InsertBuilder.TableWithString;
|
|||
|
groupInserable.RemoveCacheFunc = parent.RemoveCacheFunc;
|
|||
|
groupInserable.diffModel = parent.diffModel;
|
|||
|
groupInserable.IsEnableDiffLogEvent = parent.IsEnableDiffLogEvent;
|
|||
|
groupInserable.InsertBuilder.IsNoInsertNull = parent.InsertBuilder.IsNoInsertNull;
|
|||
|
groupInserable.IsOffIdentity = parent.IsOffIdentity;
|
|||
|
result += groupInserable.AS(item.Key).InsertColumns(names.ToArray()).ExecuteCommand();
|
|||
|
}
|
|||
|
return result;
|
|||
|
}
|
|||
|
internal async Task<int> _ExecuteCommandAsync()
|
|||
|
{
|
|||
|
CreateTable();
|
|||
|
var result = 0;
|
|||
|
var groups = TableNames.GroupBy(it => it.Key).ToList();
|
|||
|
var parent = ((InsertableProvider<T>)Inserable);
|
|||
|
var names = parent.InsertBuilder.DbColumnInfoList.GroupBy(it => it.DbColumnName).Select(i => i.Key).ToList();
|
|||
|
foreach (var item in groups)
|
|||
|
{
|
|||
|
var list = item.Select(it => it.Value as T).ToList();
|
|||
|
var groupInserable = (InsertableProvider<T>)this.Context.Insertable<T>(list);
|
|||
|
groupInserable.InsertBuilder.TableWithString = parent.InsertBuilder.TableWithString;
|
|||
|
groupInserable.RemoveCacheFunc = parent.RemoveCacheFunc;
|
|||
|
groupInserable.diffModel = parent.diffModel;
|
|||
|
groupInserable.IsEnableDiffLogEvent = parent.IsEnableDiffLogEvent;
|
|||
|
groupInserable.InsertBuilder.IsNoInsertNull = parent.InsertBuilder.IsNoInsertNull;
|
|||
|
groupInserable.IsOffIdentity = parent.IsOffIdentity;
|
|||
|
result +=await groupInserable.AS(item.Key).InsertColumns(names.ToArray()).ExecuteCommandAsync();
|
|||
|
}
|
|||
|
return result;
|
|||
|
}
|
|||
|
|
|||
|
internal List<long> _ExecuteReturnSnowflakeIdList()
|
|||
|
{
|
|||
|
CreateTable();
|
|||
|
var result = new List<long>();
|
|||
|
var groups = TableNames.GroupBy(it => it.Key).ToList();
|
|||
|
var parent = ((InsertableProvider<T>)Inserable);
|
|||
|
var names = parent.InsertBuilder.DbColumnInfoList.GroupBy(it => it.DbColumnName).Select(i => i.Key).ToList();
|
|||
|
foreach (var item in groups)
|
|||
|
{
|
|||
|
var list = item.Select(it => it.Value as T).ToList();
|
|||
|
var groupInserable = (InsertableProvider<T>)this.Context.Insertable<T>(list);
|
|||
|
groupInserable.InsertBuilder.TableWithString = parent.InsertBuilder.TableWithString;
|
|||
|
groupInserable.RemoveCacheFunc = parent.RemoveCacheFunc;
|
|||
|
groupInserable.diffModel = parent.diffModel;
|
|||
|
groupInserable.IsEnableDiffLogEvent = parent.IsEnableDiffLogEvent;
|
|||
|
groupInserable.InsertBuilder.IsNoInsertNull = parent.InsertBuilder.IsNoInsertNull;
|
|||
|
groupInserable.IsOffIdentity = parent.IsOffIdentity;
|
|||
|
var idList= groupInserable.AS(item.Key).InsertColumns(names.ToArray()).ExecuteReturnSnowflakeIdList();
|
|||
|
result.AddRange(idList);
|
|||
|
}
|
|||
|
return result;
|
|||
|
}
|
|||
|
internal async Task<List<long>> _ExecuteReturnSnowflakeIdListAsync()
|
|||
|
{
|
|||
|
CreateTable();
|
|||
|
var result = new List<long>();
|
|||
|
var groups = TableNames.GroupBy(it => it.Key).ToList();
|
|||
|
var parent = ((InsertableProvider<T>)Inserable);
|
|||
|
var names = parent.InsertBuilder.DbColumnInfoList.GroupBy(it => it.DbColumnName).Select(i => i.Key).ToList();
|
|||
|
foreach (var item in groups)
|
|||
|
{
|
|||
|
var list = item.Select(it => it.Value as T).ToList();
|
|||
|
var groupInserable = (InsertableProvider<T>)this.Context.Insertable<T>(list);
|
|||
|
groupInserable.InsertBuilder.TableWithString = parent.InsertBuilder.TableWithString;
|
|||
|
groupInserable.RemoveCacheFunc = parent.RemoveCacheFunc;
|
|||
|
groupInserable.diffModel = parent.diffModel;
|
|||
|
groupInserable.IsEnableDiffLogEvent = parent.IsEnableDiffLogEvent;
|
|||
|
groupInserable.InsertBuilder.IsNoInsertNull = parent.InsertBuilder.IsNoInsertNull;
|
|||
|
groupInserable.IsOffIdentity = parent.IsOffIdentity;
|
|||
|
var idList =await groupInserable.AS(item.Key).InsertColumns(names.ToArray()).ExecuteReturnSnowflakeIdListAsync();
|
|||
|
result.AddRange(idList);
|
|||
|
}
|
|||
|
return result;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
private void CreateTable()
|
|||
|
{
|
|||
|
var isLog = this.Context.Ado.IsEnableLogEvent;
|
|||
|
this.Context.Ado.IsEnableLogEvent = false;
|
|||
|
foreach (var item in TableNames.GroupBy(it=>it.Key).Select(it=>it).ToDictionary(it=>it.Key,it=>it.First().Value))
|
|||
|
{
|
|||
|
if (!this.Context.DbMaintenance.IsAnyTable(item.Key, false))
|
|||
|
{
|
|||
|
if (item.Value != null)
|
|||
|
{
|
|||
|
this.Context.MappingTables.Add(EntityInfo.EntityName, item.Key);
|
|||
|
this.Context.CodeFirst.InitTables<T>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
this.Context.Ado.IsEnableLogEvent = isLog;
|
|||
|
this.Context.MappingTables.Add(EntityInfo.EntityName, EntityInfo.DbTableName);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|