private int DeleteTblCostCenterRouteGroup(TblCostCenterRouteGroup row, int index, string company) { using (var entity = new ccnewEntities(GetSqlConnectionString(company))) { var query = (from e in entity.TblCostCenterRouteGroups where e.Iserial == row.Iserial select e).SingleOrDefault(); if (query != null) { entity.DeleteObject(query); } entity.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 save = SelectedMainRow.Iserial == 0; if (save) { if (AllowAdd != true) { MessageBox.Show(strings.AllowAddMsg); return; } } else { if (AllowUpdate != true) { MessageBox.Show(strings.AllowUpdateMsg); return; } } var saveRow = new TblCostCenterRouteGroup(); saveRow.InjectFrom(SelectedMainRow); Glclient.UpdateOrInsertTblCostCenterRouteGroupsAsync(saveRow, save, MainRowList.IndexOf(SelectedMainRow), LoggedUserInfo.DatabasEname); } else { MessageBox.Show("Data Was Not Saved"); } } }
private TblCostCenterRouteGroup UpdateOrInsertTblCostCenterRouteGroups(TblCostCenterRouteGroup newRow, bool save, int index, out int outindex, string company) { outindex = index; using (var entity = new ccnewEntities(GetSqlConnectionString(company))) { if (save) { entity.TblCostCenterRouteGroups.AddObject(newRow); } else { var oldRow = (from e in entity.TblCostCenterRouteGroups where e.Iserial == newRow.Iserial select e).SingleOrDefault(); if (oldRow != null) { GenericUpdate(oldRow, newRow, entity); } } entity.SaveChanges(); return(newRow); } }