Update Core

This commit is contained in:
sunkaixuna 2021-11-21 00:09:09 +08:00
parent 18c799bc27
commit 471beeecb1

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
public class OracleFastBuilder : FastBuilder, IFastBuilder
{
public Task<int> ExecuteBulkCopyAsync(DataTable dt)
{
throw new NotImplementedException();
}
}
}