/// <summary> /// 修改 /// </summary> /// <param name="p_BE">要修改的实体</param> /// <param name="sqlTrans">事务类</param> public void RUpdate(BaseEntity p_BE, BaseEntity[] p_BE2, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); LYGL entity = (LYGL)p_BE; LYGLCtl control = new LYGLCtl(sqlTrans); control.Update(entity); LYGLDtsRule rule = new LYGLDtsRule(); rule.RSave(entity, p_BE2, sqlTrans); //string sql = "DELETE Dev_LYGLDts WHERE MainID="+SysString.ToDBString(entity.ID); //sqlTrans.ExecuteNonQuery(sql); //for (int i = 0; i < p_BE2.Length; i++) //{ // LYGLDtsRule rule = new LYGLDtsRule(); // LYGLDts entityDts = (LYGLDts)p_BE2[i]; // entityDts.MainID = entity.ID; // entityDts.Seq = i + 1; // rule.RAdd(entityDts, sqlTrans); //} } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }
/// <summary> /// 修改 /// </summary> /// <param name="p_BE">要修改的实体</param> /// <param name="sqlTrans">事务类</param> public void RUpdate(BaseEntity p_BE, IDBTransAccess sqlTrans) { try { this.CheckCorrect(p_BE); LYGL entity = (LYGL)p_BE; LYGLCtl control = new LYGLCtl(sqlTrans); control.Update(entity); } catch (BaseException) { throw; } catch (Exception E) { throw new BaseException(E.Message); } }