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 EntityInfo FastEntityInfo { get; set; } public string CharacterSet { get; set; } public OracleFastBuilder(EntityInfo entityInfo) { throw new Exception("Only.net CORE is supported"); } public SqlSugarProvider Context { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } public bool IsActionUpdateColumns { get; set; } public DbFastestProperties DbFastestProperties { get; set; } = new DbFastestProperties(); public void CloseDb() { throw new NotImplementedException(); } public Task CreateTempAsync(DataTable dt) where T : class, new() { throw new NotImplementedException(); } public Task ExecuteBulkCopyAsync(DataTable dt) { throw new NotImplementedException(); } public Task UpdateByTempAsync(string tableName, string tempName, string[] updateColumns, string[] whereColumns) { throw new NotImplementedException(); } public Task Merge(string tableName, DataTable dt, EntityInfo entityInfo, string[] whereColumns, string[] updateColumns, List datas) where T : class, new() { throw new Exception("Only.net CORE is supported"); } } }