public async Task <IActionResult> Edit(int id, [Bind("Id,Nome,Descricao,Status")] Vaga vaga) { if (id != vaga.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(vaga); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VagaExists(vaga.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(vaga)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Nome,Email,Telefone,PretSalarial")] Candidato candidato) { if (id != candidato.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(candidato); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CandidatoExists(candidato.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(candidato)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Name")] Departament departament) { if (id != departament.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(departament); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DepartamentExists(departament.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(departament)); }
public async Task UpdateAsync(Seller obj) { bool hasAny = await _context.Seller.AnyAsync(x => x.Id == obj.Id); if (!hasAny) { throw new NotFoundException("Id não encontrado!"); } try { _context.Update(obj); await _context.SaveChangesAsync(); } catch (DbConcurrencyException e) { throw new DbConcurrencyException(e.Message); } }
public void Update(Seller obj) {/*verificando se existe algum id no banco * semelhante ao que voce esta procurando * se nao existir, a excecao eh lançada*/ if (!_context.Seller.Any(x => x.Id == obj.Id)) { throw new NotFoundException("Id not found"); } /*usando o try/catch pois pode haver uma excecao do banco * sobre ao usar o "update", sobre conflito de concorrência */ try { _context.Update(obj); _context.SaveChanges(); } catch (DbUpdateConcurrencyException e) { throw new DbConcurrencyException(e.Message); } }