Browse Source

Add Obsolete

pull/10/MERGE
sunkaixuna 3 years ago
parent
commit
d93caf68b0
  1. 2
      Src/Asp.Net/SqlSugar/Interface/ISqlSugarClient.cs

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

@ -122,7 +122,9 @@ namespace SqlSugar
#region Saveable
IStorageable<T> Storageable<T>(List<T> dataList) where T : class, new();
IStorageable<T> Storageable<T>(T data) where T : class, new();
[Obsolete("use Storageable")]
ISaveable<T> Saveable<T>(List<T> saveObjects) where T : class, new();
[Obsolete("use Storageable")]
ISaveable<T> Saveable<T>(T saveObject) where T : class, new();
#endregion

Loading…
Cancel
Save