using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SqlSugar { public class OracleUpdateable : UpdateableProvider where T : class, new() { protected override List GetIdentityKeys() { return this.EntityInfo.Columns.Where(it => it.OracleSequenceName.HasValue()).Select(it => it.DbColumnName).ToList(); } public override int ExecuteCommand() { if (base.UpdateObjs.Count() == 1) { var resultl= base.ExecuteCommand(); if (resultl == -1) { return 1; } else { return resultl; } } else if (base.UpdateObjs.Count() == 0) { return 0; } else { base.ExecuteCommand(); return base.UpdateObjs.Count(); } } public async override Task ExecuteCommandAsync() { if (base.UpdateObjs.Count() == 1) { var result= await base.ExecuteCommandAsync(); if (result == -1) { return 1; } else { return result; } } else if (base.UpdateObjs.Count() == 0) { return 0; } else { await base.ExecuteCommandAsync(); return base.UpdateObjs.Count(); } } } }