mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 10:08:19 +08:00
17 lines
311 B
C#
17 lines
311 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> ExecuteBulkCopyAsync(DataTable dt);
|
|
}
|
|
}
|