Browse Source

Update ITenant

pull/40/head
sunkaixuan 1 year ago
parent
commit
dcde6b3a6f
  1. 2
      Src/Asp.Net/SqlSugar/Interface/ITenant.cs
  2. 2
      Src/Asp.NetCore2/SqlSugar/Interface/ITenant.cs

2
Src/Asp.Net/SqlSugar/Interface/ITenant.cs

@ -39,6 +39,8 @@ 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();
IDeleteable<T> DeleteableWithAttr<T>() where T : class, new();
bool IsAnyConnection(dynamic configId);
void Close();

2
Src/Asp.NetCore2/SqlSugar/Interface/ITenant.cs

@ -39,6 +39,8 @@ 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();
IDeleteable<T> DeleteableWithAttr<T>() where T : class, new();
bool IsAnyConnection(dynamic configId);
void Close();

Loading…
Cancel
Save