public async Task <IActionResult> Edit(int id, [Bind("Id,Name,Headline,Content")] BlogModel blogModel) { if (id != blogModel.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(blogModel); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!BlogModelExists(blogModel.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(blogModel)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,userName,gender,alias,website,socialWebsite,email,dob")] UserModel userModel) { if (id != userModel.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(userModel); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UserModelExists(userModel.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(userModel)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,userName,email,profilePicUrl,friendsEmail")] SocialModel socialModel) { if (id != socialModel.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(socialModel); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!SocialModelExists(socialModel.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(socialModel)); }