sqlsugar/Src/Asp.Net/SqlSugar/OnlyNet/OracleBlukCopy.cs

31 lines
773 B
C#
Raw Normal View History

2025-05-11 16:20:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
public class OracleBlukCopy
{
public List<IGrouping<int, DbColumnInfo>> DbColumnInfoList { get; set; }
public InsertBuilder InsertBuilder { get; set; }
public ISqlBuilder Builder { get; set; }
public SqlSugarProvider Context { get; set; }
public object[] Inserts { get; set; }
public int ExecuteBulkCopy()
{
throw new Exception("Only.net CORE is supported");
}
public async Task<int> ExecuteBulkCopyAsync()
{
await Task.Delay(0);
throw new Exception("Only.net CORE is supported");
}
}
}