mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Synchronization code
This commit is contained in:
parent
341964a36d
commit
87ed91526d
@ -120,7 +120,7 @@ namespace SqlSugar
|
||||
ActionCallBack(resultValue);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
return resultValue;
|
||||
}
|
||||
private int _ExecuteCommand(List<T> list)
|
||||
{
|
||||
@ -133,7 +133,7 @@ namespace SqlSugar
|
||||
var addList = item.Select(it => it.Item).ToList();
|
||||
resultValue += this.Context.Storageable(addList).As(item.Key).WhereColumns(whereExpression).ExecuteCommand();
|
||||
}
|
||||
return result;
|
||||
return resultValue;
|
||||
}
|
||||
|
||||
private async Task<int> _ExecuteSqlBulkCopyAsync(List<T> list)
|
||||
@ -151,7 +151,7 @@ namespace SqlSugar
|
||||
ActionCallBack(resultValue);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
return resultValue;
|
||||
}
|
||||
private int _ExecuteSqlBulkCopy(List<T> list)
|
||||
{
|
||||
@ -164,7 +164,7 @@ namespace SqlSugar
|
||||
var addList = item.Select(it => it.Item).ToList();
|
||||
resultValue += this.Context.Storageable(addList).As(item.Key).WhereColumns(whereExpression).ExecuteSqlBulkCopy();
|
||||
}
|
||||
return result;
|
||||
return resultValue;
|
||||
}
|
||||
|
||||
private void GroupDataList(List<T> datas, out List<GroupModel> groupModels, out int result)
|
||||
|
Loading…
Reference in New Issue
Block a user