mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
- 增加 Async CancellationToken IDelete;
This commit is contained in:
@ -2,6 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Data.Common;
|
||||
using System.Linq.Expressions;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FreeSql
|
||||
@ -109,8 +110,8 @@ namespace FreeSql
|
||||
|
||||
#if net40
|
||||
#else
|
||||
Task<int> ExecuteAffrowsAsync();
|
||||
Task<List<T1>> ExecuteDeletedAsync();
|
||||
Task<int> ExecuteAffrowsAsync(CancellationToken cancellationToken = default);
|
||||
Task<List<T1>> ExecuteDeletedAsync(CancellationToken cancellationToken = default);
|
||||
#endif
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user