public async Task <IActionResult> Edit(int id, [Bind("Id,WebsiteName,Description,Rank,Country")] Website website) { if (id != website.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(website); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!WebsiteExists(website.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(website)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,CryptoName,Type,Price,Country")] Crypto crypto) { if (id != crypto.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(crypto); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CryptoExists(crypto.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(crypto)); }