public async Task <IActionResult> Edit(Guid id, [Bind("ID,Breakfast,Lunch,Type")] Meal meal) { if (id != meal.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(meal); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MealExists(meal.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(meal)); }
public async Task <IActionResult> Edit(Guid id, [Bind("ID,LastName,FirstMidName,EnrollmentDate")] Student student) { if (id != student.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(student); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StudentExists(student.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(student)); }