private int DeleteTblSizeGroup(TblSizeGroup row) { using (var context = new WorkFlowManagerDBEntities()) { var oldRow = (from e in context.TblSizeGroups where e.Iserial == row.Iserial select e).SingleOrDefault(); if (oldRow != null) { context.DeleteObject(oldRow); } context.SaveChanges(); } return(row.Iserial); }
public void SaveMainRow() { if (SelectedMainRow != null) { var valiationCollection = new List <ValidationResult>(); var isvalid = Validator.TryValidateObject(SelectedMainRow, new ValidationContext(SelectedMainRow, null, null), valiationCollection, true); if (isvalid) { var saveRow = new TblSizeGroup(); saveRow.InjectFrom(SelectedMainRow); Client.UpdateOrInsertTblSizeGroupAsync(saveRow, MainRowList.IndexOf(SelectedMainRow)); } } }
private TblSizeGroup UpdateOrInsertTblSizeGroup(TblSizeGroup newRow, int index, out int outindex) { outindex = index; using (var context = new WorkFlowManagerDBEntities()) { var oldRow = (from e in context.TblSizeGroups where e.Iserial == newRow.Iserial select e).SingleOrDefault(); if (oldRow != null) { GenericUpdate(oldRow, newRow, context); } else { context.TblSizeGroups.AddObject(newRow); } context.SaveChanges(); return(newRow); } }