public async Task <IActionResult> Edit(int id, [Bind("ID,Name,Description,Resume")] Profile profile) { if (id != profile.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(profile); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProfileExists(profile.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(profile)); }
public async Task <IActionResult> Edit(int id, [Bind("ID,Name,Date,ECTS")] Course course) { if (id != course.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(course); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CourseExists(course.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(course)); }