- 整理 IInsert/IUpdate 分批参数;

This commit is contained in:
28810
2020-05-19 15:48:39 +08:00
parent 148724e229
commit 70fd324cf3
26 changed files with 83 additions and 130 deletions

View File

@ -68,8 +68,8 @@ namespace FreeSql.MsAccess.Curd
#if net40
#else
public override Task<int> ExecuteAffrowsAsync() => base.SplitExecuteAffrowsAsync(500, 2100);
public override Task<List<T1>> ExecuteUpdatedAsync() => base.SplitExecuteUpdatedAsync(500, 2100);
public override Task<int> ExecuteAffrowsAsync() => base.SplitExecuteAffrowsAsync(1, 1000);
public override Task<List<T1>> ExecuteUpdatedAsync() => base.SplitExecuteUpdatedAsync(1, 1000);
protected override Task<List<T1>> RawExecuteUpdatedAsync()
{