public async Task <IActionResult> Edit(long id, [Bind("Id,Idvittoria,Idsquadra1,Idsquadra2,Luogo,Data,Tabellino,Identif,Dts,Dcr,Commento,Punteggio1,Punteggio2,Puntbcr1,Puntbcr2,Ordine")] Partite partite) { if (id != partite.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(partite); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PartiteExists(partite.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(partite)); }
public async Task <IActionResult> Create([Bind("Id,Idvittoria,Idsquadra1,Idsquadra2,Luogo,Data,Tabellino,Identif,Dts,Dcr,Commento,Punteggio1,Punteggio2,Puntbcr1,Puntbcr2,Ordine")] Partite partite) { if (ModelState.IsValid) { _context.Add(partite); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(partite)); }