public static String Delete(ref String missatge, esdeveniments esdeveniment) { Orm.bd.esdeveniments.Remove(esdeveniment); missatge = Orm.mySaveChanges(); return(missatge); }
public static String Insert(ref String missatge, esdeveniments nouEsdeveniment) { Orm.bd.esdeveniments.Add(nouEsdeveniment); missatge = Orm.mySaveChanges(); return(missatge); }
public static String Update(ref String missatge, esdeveniments esdeveniment) { try { Orm.bd.SaveChanges(); } catch (DbUpdateException ex) { SqlException sqlException = (SqlException)ex.InnerException.InnerException; missatge = Orm.missatgeError(sqlException); } return(missatge); }
public static dynamic Select(esdeveniments esdeveniment) { var data = esdeveniment.assistir.Join( Orm.bd.socis, assistir => assistir.id_soci, socis => socis.id, (assistir, socis) => new { numSoci = socis.num, nomSoci = socis.nom, text = assistir.textValoracio, puntuacio = assistir.valoracio, id = socis.id, cognoms = socis.cognoms, asistents = assistir.quantitat_persones }).ToList(); return(data); }