From abd593245ba0dd897e015053ab94ec2f495a67d0 Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Tue, 11 Apr 2023 16:44:49 +0800 Subject: [PATCH] Add api --- Src/Asp.Net/SqlSugar/Interface/ISqlSugarClient.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Src/Asp.Net/SqlSugar/Interface/ISqlSugarClient.cs b/Src/Asp.Net/SqlSugar/Interface/ISqlSugarClient.cs index 1baacb819..62d5d722d 100644 --- a/Src/Asp.Net/SqlSugar/Interface/ISqlSugarClient.cs +++ b/Src/Asp.Net/SqlSugar/Interface/ISqlSugarClient.cs @@ -35,6 +35,7 @@ namespace SqlSugar SugarActionType SugarActionType { get; set; } #region Deleteable + DeleteMethodInfo DeleteableByObject(object singleEntityObjectOrListObject); IDeleteable Deleteable() where T : class, new(); IDeleteable Deleteable(dynamic primaryKeyValue) where T : class, new(); IDeleteable Deleteable(dynamic[] primaryKeyValues) where T : class, new(); @@ -187,6 +188,7 @@ namespace SqlSugar #endregion #region Updateable + UpdateMethodInfo UpdateableByObject(object singleEntityObjectOrListObject); IUpdateable Updateable() where T : class, new(); IUpdateable Updateable(Dictionary columnDictionary) where T : class, new(); IUpdateable Updateable(dynamic updateDynamicObject) where T : class, new();