mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-31 15:56:25 +08:00
18 lines
497 B
C#
18 lines
497 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public interface IFastBuilder
|
|
{
|
|
SqlSugarProvider Context { get; set; }
|
|
Task<int> UpdateByTempAsync(string tableName,string tempName,string [] updateColumns,string[] whereColumns);
|
|
Task<int> ExecuteBulkCopyAsync(DataTable dt);
|
|
Task CreateTempAsync<T>(DataTable dt) where T : class, new();
|
|
}
|
|
}
|