public ActionResult Editar(tablaViewModel model) { try { if (ModelState.IsValid) { using (crudEntities db = new crudEntities()) { var oTabla = db.tabla.Find(model.Id); oTabla.correo = model.Correo; oTabla.fecha_nacimiento = model.Fecha_Nacimiento; oTabla.nombre = model.Nombre; db.Entry(oTabla).State = System.Data.Entity.EntityState.Modified; db.SaveChanges(); } return(Redirect("/tabla")); } return(View(model)); } catch (Exception ex) { throw new Exception(ex.Message); } }
private void btnSave_Click(object sender, EventArgs e) { using (crudEntities db = new crudEntities()) { if (id == null) { persona = new personas(); } int edad_id = int.Parse(edadesList.SelectedValue.ToString()); persona.nombre = textNombre.Text; persona.edad_id = edad_id; persona.fecha = textFecha.Value; if (id == null) { db.personas.Add(persona); } else { db.Entry(persona).State = System.Data.Entity.EntityState.Modified; } db.SaveChanges(); this.Close(); } }
public ActionResult Editar(PersonaViewModel personaVM) { try { if (ModelState.IsValid) { using (crudEntities db = new crudEntities()) { var persona = db.personaprueba.Find(personaVM.idPersona); persona.nombre = personaVM.nombre; persona.edad = personaVM.edad; persona.descripcion = personaVM.descripcion; db.Entry(persona).State = System.Data.Entity.EntityState.Modified; db.SaveChanges(); } return(Redirect("/Persona/Index")); } return(View(personaVM)); } catch (Exception ex) { throw new Exception(ex.Message); } }
private void addBtn_Click(object sender, EventArgs e) { using (crudEntities db = new crudEntities()) { if (id == null) { edad = new edades(); } edad.nro = textNro.Text; if (id == null) { db.edades.Add(edad); } else { db.Entry(edad).State = System.Data.Entity.EntityState.Modified; } db.SaveChanges(); this.Close(); } }