public IActionResult PasPostAan(PostsViewModel vm) { Post post = new Post { PostId = vm.PostId, Categorie = vm.PasPostAanVM.Categorie, Naam = vm.PasPostAanVM.Naam, BeschrijvingTaal = vm.PasPostAanVM.BeschrijvingTaal, MoeilijkheidsgraadOnderwerp = vm.PasPostAanVM.MoeilijkheidsgraadOnderwerp, PostVersie = vm.PasPostAanVM.PostVersie, TaalVersie = vm.PasPostAanVM.TaalVersie }; try { postContext.Update(post); return(RedirectToAction("Post", new { id = vm.PostId })); } catch (SqlException exp) { return(View("PasPostAan", vm)); } }
public bool UpdatePost(Post post) { return(_context.Update(post)); }
public void Update(Post post) { context.Update(post); }