mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-11-08 02:14:53 +08:00
40 lines
1.0 KiB
C#
40 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public class OracleFastBuilder:IFastBuilder
|
|
{
|
|
public OracleFastBuilder(EntityInfo entityInfo)
|
|
{
|
|
throw new Exception("Only.net CORE is supported");
|
|
}
|
|
|
|
public SqlSugarProvider Context { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
|
|
|
public void CloseDb()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task CreateTempAsync<T>(DataTable dt) where T : class, new()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<int> ExecuteBulkCopyAsync(DataTable dt)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<int> UpdateByTempAsync(string tableName, string tempName, string[] updateColumns, string[] whereColumns)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|