public async Task <IActionResult> Edit(int id, [Bind("Id,Name,Description,Imagelocation")] Article article) { if (id != article.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(article); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ArticleExists(article.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(article)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Name,Password,CreateDate,Logincount")] User user) { if (id != user.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(user); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UserExists(user.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(user)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Quantity,ArticleId,OrderId")] OrderLine orderLine) { if (id != orderLine.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(orderLine); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!OrderLineExists(orderLine.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["ArticleId"] = new SelectList(_context.Articles, "Id", "Id", orderLine.ArticleId); ViewData["OrderId"] = new SelectList(_context.Orders, "Id", "Id", orderLine.OrderId); return(View(orderLine)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Comment")] Order order) { if (id != order.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(order); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!OrderExists(order.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(order)); }