Add ISubInsertable.ExecuteCommandAsync

This commit is contained in:
sunkaixuna
2021-08-16 22:06:56 +08:00
parent 22a38a1c66
commit 160b8be79a

View File

@@ -1,5 +1,6 @@
using System; using System;
using System.Linq.Expressions; using System.Linq.Expressions;
using System.Threading.Tasks;
namespace SqlSugar namespace SqlSugar
{ {
@@ -10,5 +11,6 @@ namespace SqlSugar
[Obsolete("use ExecuteCommand")] [Obsolete("use ExecuteCommand")]
object ExecuteReturnPrimaryKey(); object ExecuteReturnPrimaryKey();
object ExecuteCommand(); object ExecuteCommand();
Task<object> ExecuteCommandAsync();
} }
} }