public static string CiudadUpdate(int id_ciudad, string nombre) { string mensaje = ""; ciudades c = CiudadesSelectPorId(id_ciudad); c.nombre = nombre; try { contexto.SaveChanges(); } catch (DbUpdateException ex) { SqlException sqlEx = (SqlException)ex.InnerException.InnerException; mensaje = BdErrores.Mensaje(sqlEx); } return(mensaje); }
public static string CiudadInsert(int id_ciudad, string nombre) { string mensaje = ""; ciudades c = new ciudades(); c.id_ciudad = id_ciudad; c.nombre = nombre; contexto.ciudades.Add(c); try { contexto.SaveChanges(); } catch (DbUpdateException ex) { SqlException sqlEx = (SqlException)ex.InnerException.InnerException; mensaje = BdErrores.Mensaje(sqlEx); } return(mensaje); }