public static ciudades CiudadesSelectPorId(int id_ciudad) { ciudades _ciudad = (from c in contexto.ciudades.Include("hoteles") where c.id_ciudad == id_ciudad select c).FirstOrDefault(); return(_ciudad); }
private void FormHoteles_Load(object sender, EventArgs e) { //bindingSourceHoteles.DataSource = Bd.HotelesSelect(); bindingSourceCiudades.DataSource = Bd.CiudadesSelect(); ciudades c = Bd.CiudadesSelectPorId((int)comboBoxCiudades.SelectedValue); bindingSourceHoteles.DataSource = c.hoteles; }
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); }
private void comboBoxCiudades_SelectedIndexChanged(object sender, EventArgs e) { ciudades c = Bd.CiudadesSelectPorId((int)comboBoxCiudades.SelectedValue); bindingSourceHoteles.DataSource = c.hoteles; }