mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-23 12:33:44 +08:00
Synchronization code
This commit is contained in:
@@ -35,6 +35,7 @@ namespace SqlSugar
|
|||||||
SugarActionType SugarActionType { get; set; }
|
SugarActionType SugarActionType { get; set; }
|
||||||
|
|
||||||
#region Deleteable
|
#region Deleteable
|
||||||
|
DeleteMethodInfo DeleteableByObject(object singleEntityObjectOrListObject);
|
||||||
IDeleteable<T> Deleteable<T>() where T : class, new();
|
IDeleteable<T> Deleteable<T>() where T : class, new();
|
||||||
IDeleteable<T> Deleteable<T>(dynamic primaryKeyValue) where T : class, new();
|
IDeleteable<T> Deleteable<T>(dynamic primaryKeyValue) where T : class, new();
|
||||||
IDeleteable<T> Deleteable<T>(dynamic[] primaryKeyValues) where T : class, new();
|
IDeleteable<T> Deleteable<T>(dynamic[] primaryKeyValues) where T : class, new();
|
||||||
@@ -187,6 +188,7 @@ namespace SqlSugar
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Updateable
|
#region Updateable
|
||||||
|
UpdateMethodInfo UpdateableByObject(object singleEntityObjectOrListObject);
|
||||||
IUpdateable<T> Updateable<T>() where T : class, new();
|
IUpdateable<T> Updateable<T>() where T : class, new();
|
||||||
IUpdateable<T> Updateable<T>(Dictionary<string, object> columnDictionary) where T : class, new();
|
IUpdateable<T> Updateable<T>(Dictionary<string, object> columnDictionary) where T : class, new();
|
||||||
IUpdateable<T> Updateable<T>(dynamic updateDynamicObject) where T : class, new();
|
IUpdateable<T> Updateable<T>(dynamic updateDynamicObject) where T : class, new();
|
||||||
|
Reference in New Issue
Block a user