Synchronization code

This commit is contained in:
sunkaixuan 2023-09-25 18:09:05 +08:00
parent 281cee9513
commit b2e1fe9ada

View File

@ -597,6 +597,10 @@ namespace SqlSugar
{
return ScopedContext.SqlQueryable<T>(sql);
}
public IStorageable<T> Storageable<T>(T[] dataList) where T : class, new()
{
return ScopedContext.Storageable(dataList);
}
public StorageableDataTable Storageable(List<Dictionary<string, object>> dictionaryList, string tableName)
{
return ScopedContext.Storageable(dictionaryList, tableName);