コード例 #1
0
 partial void DeleteGusta(Gusta instance);
コード例 #2
0
 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);
 }
コード例 #3
0
 partial void UpdateGusta(Gusta instance);
コード例 #4
0
 partial void InsertGusta(Gusta instance);
コード例 #5
0
		private void detach_Gustas(Gusta entity)
		{
			this.SendPropertyChanging();
			entity.Contenido = null;
		}
コード例 #6
0
		private void attach_Gustas(Gusta entity)
		{
			this.SendPropertyChanging();
			entity.Contenido = this;
		}
コード例 #7
0
		private void detach_Gustas(Gusta entity)
		{
			this.SendPropertyChanging();
			entity.aspnet_User = null;
		}