Update aot

This commit is contained in:
sunkaixuan 2024-10-25 16:15:48 +08:00
parent 2b74f3661f
commit 52d7617f27
2 changed files with 7 additions and 6 deletions

View File

@ -15,6 +15,12 @@ namespace SqlSugar
}
public partial class MySqlBlukCopy<T>
{
public MySqlBlukCopy(SqlSugarProvider context, ISqlBuilder builder, T[] entitys)
{
this.Context = context;
this.Builder = builder;
this.Entitys = entitys;
}
}
public partial class OracleBlukCopy
{

View File

@ -19,12 +19,7 @@ namespace SqlSugar
{
}
public MySqlBlukCopy(SqlSugarProvider context, ISqlBuilder builder, T []entitys)
{
this.Context = context;
this.Builder = builder;
this.Entitys = entitys;
}
public bool ExecuteBulkCopy(string characterSet)
{
this.Chara = characterSet;