partial void DeleteGusta(Gusta instance);
public ActionResult Gusta(int id) { BibliotecaDataContext db = new BibliotecaDataContext(); Gusta h = new Gusta() { Id_Us=(Guid)(Session["userid"]),IdPub=id}; db.Gustas.InsertOnSubmit(h); db.SubmitChanges(); string tipo = (from t in db.Contenidos where t.IdContenido == id select t).ToArray()[0].Tipo; if(tipo=="Libro") return Redirect("/Contenido/VistaLibro/" + id); return Redirect("/Contenido/DetallePublicacion/"+id); }
partial void UpdateGusta(Gusta instance);
partial void InsertGusta(Gusta instance);
private void detach_Gustas(Gusta entity) { this.SendPropertyChanging(); entity.Contenido = null; }
private void attach_Gustas(Gusta entity) { this.SendPropertyChanging(); entity.Contenido = this; }
private void detach_Gustas(Gusta entity) { this.SendPropertyChanging(); entity.aspnet_User = null; }