v3.2.666-preview20220730 - 修复 Clickhouse Delete bug;

This commit is contained in:
2881099
2022-07-28 09:35:12 +08:00
parent 0949b28096
commit ae2f43c4ec
5 changed files with 502 additions and 4 deletions

View File

@ -66,7 +66,7 @@ namespace FreeSql.Internal.CommonProvider
return this;
}
public int ExecuteAffrows()
public virtual int ExecuteAffrows()
{
var affrows = 0;
DbParameter[] dbParms = null;

View File

@ -14,7 +14,7 @@ namespace FreeSql.Internal.CommonProvider
{
#if net40
#else
async public Task<int> ExecuteAffrowsAsync(CancellationToken cancellationToken = default)
async public virtual Task<int> ExecuteAffrowsAsync(CancellationToken cancellationToken = default)
{
var affrows = 0;
DbParameter[] dbParms = null;