public int DeleteByTrans2(CauseObject_V_MCE_ASSETS_ROLLEQUIP cause, IDbTransaction transaction) { if (LocalMode) { return(HelperObject_V_MCE_ASSETS_ROLLEQUIP.Delete(cause, transaction)); //平台自动生成代码 } else { throw new InvalidConstraintException(); } }
public BizLogicMsg CommitUpdate(EntityObject_V_MCE_ASSETS_ROLLEQUIP[] saveEntities, EntityObject_V_MCE_ASSETS_ROLLEQUIP[] updateEntities, EntityObject_V_MCE_ASSETS_ROLLEQUIP[] deleteEntities) { if (LocalMode) { BizLogicMsg msg = new BizLogicMsg(); using (IDbConnection connection = IDALProvider.IDAL.PopConnection()) { using (IDbTransaction transaction = connection.BeginTransaction()) { try { //平台自动生成代码 foreach (EntityObject_V_MCE_ASSETS_ROLLEQUIP obj in saveEntities) { SystemLogic.Proxy.AuditAdd(obj); HelperObject_V_MCE_ASSETS_ROLLEQUIP.Save(obj, transaction); } foreach (EntityObject_V_MCE_ASSETS_ROLLEQUIP obj in updateEntities) { SystemLogic.Proxy.AuditEdit(obj); HelperObject_V_MCE_ASSETS_ROLLEQUIP.Update(obj, transaction); } foreach (EntityObject_V_MCE_ASSETS_ROLLEQUIP obj in deleteEntities) { HelperObject_V_MCE_ASSETS_ROLLEQUIP.Delete(obj, transaction); } transaction.Commit(); } catch (Exception expt) { transaction.Rollback(); msg = new BizLogicMsg(false, expt.Message); Error(expt); } finally { IDALProvider.IDAL.PushConnection(connection); } } } return(msg); } else { using (ServiceManager <ServiceContract_V_MCE_ASSETS_ROLLEQUIP> smgr = new ServiceManager <ServiceContract_V_MCE_ASSETS_ROLLEQUIP>(ServiceUri)) { return(smgr.Service.CommitUpdate(saveEntities, updateEntities, deleteEntities)); } } }
public BizLogicMsg BatchDelete(EntityObject_V_MCE_ASSETS_ROLLEQUIP[] objs) { if (LocalMode) { BizLogicMsg msg = new BizLogicMsg(); using (IDbConnection connection = IDALProvider.IDAL.PopConnection()) { using (IDbTransaction transaction = connection.BeginTransaction()) { try { int amount = 0; //平台自动生成代码 foreach (EntityObject_V_MCE_ASSETS_ROLLEQUIP obj in objs) { amount += HelperObject_V_MCE_ASSETS_ROLLEQUIP.Delete(obj, transaction); } transaction.Commit(); } catch (Exception expt) { transaction.Rollback(); msg = new BizLogicMsg(false, expt.Message); Error(expt); } finally { IDALProvider.IDAL.PushConnection(connection); } } } return(msg); } else { using (ServiceManager <ServiceContract_V_MCE_ASSETS_ROLLEQUIP> smgr = new ServiceManager <ServiceContract_V_MCE_ASSETS_ROLLEQUIP>(ServiceUri)) { return(smgr.Service.BatchDelete(objs)); } } }
public BizLogicMsg CommitDelete(EntityObject_V_MCE_ASSETS_ROLLEQUIP deleteBaseEntity) { if (LocalMode) { BizLogicMsg msg = new BizLogicMsg(); using (IDbConnection connection = IDALProvider.IDAL.PopConnection()) { using (IDbTransaction transaction = connection.BeginTransaction()) { try { //平台自动生成代码 CauseObject_ p = new CauseObject_(); p. = deleteBaseEntity.ASSETS_NAME; HelperObject_.Delete(p, transaction); HelperObject_V_MCE_ASSETS_ROLLEQUIP.Delete(deleteBaseEntity, transaction); transaction.Commit(); } catch (Exception expt) { transaction.Rollback(); msg = new BizLogicMsg(false, expt.Message); Error(expt); } finally { IDALProvider.IDAL.PushConnection(connection); } } } return(msg); } else { using (ServiceManager <ServiceContract_V_MCE_ASSETS_ROLLEQUIP> smgr = new ServiceManager <ServiceContract_V_MCE_ASSETS_ROLLEQUIP>(ServiceUri)) { return(smgr.Service.CommitDelete(deleteBaseEntity)); } } }