EFCore.Sharding icon indicating copy to clipboard operation
EFCore.Sharding copied to clipboard

IBaseDbAccessor的异步方法应当支持CancellationToken

Open LGinC opened this issue 3 years ago • 0 comments

目前的异步方法签名 Task<int> InsertAsync<T>(T entity, bool tracking = false)

支持取消的异步方法签名 Task<int> InsertAsync<T>(T entity, bool tracking = false, CancellationToken cancellationToken = default)

LGinC avatar Jul 01 '21 01:07 LGinC