Update ITenant

This commit is contained in:
sunkaixuan
2023-07-07 20:37:00 +08:00
parent 44dbbea544
commit dcde6b3a6f
2 changed files with 6 additions and 2 deletions

View File

@@ -39,7 +39,9 @@ namespace SqlSugar
IUpdateable<T> UpdateableWithAttr<T>(List<T> updateObjs) where T : class, new();
IDeleteable<T> DeleteableWithAttr<T>(T deleteObjs) where T : class, new();
IDeleteable<T> DeleteableWithAttr<T>(List<T> deleteObjs) where T : class, new();
bool IsAnyConnection(dynamic configId);
IDeleteable<T> DeleteableWithAttr<T>() where T : class, new();
bool IsAnyConnection(dynamic configId);
void Close();
void Open();

View File

@@ -39,7 +39,9 @@ namespace SqlSugar
IUpdateable<T> UpdateableWithAttr<T>(List<T> updateObjs) where T : class, new();
IDeleteable<T> DeleteableWithAttr<T>(T deleteObjs) where T : class, new();
IDeleteable<T> DeleteableWithAttr<T>(List<T> deleteObjs) where T : class, new();
bool IsAnyConnection(dynamic configId);
IDeleteable<T> DeleteableWithAttr<T>() where T : class, new();
bool IsAnyConnection(dynamic configId);
void Close();
void Open();