public async Task <IActionResult> Edit(long id, [Bind("Id,Nombre,Archivo,Archivo64")] Documento documento) { if (id != documento.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(documento); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DocumentoExists(documento.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(documento)); }