public ActionResult Create(Link link) { if (ModelState.IsValid) { linkRepository.InsertOrUpdate(link); linkRepository.Save(); return RedirectToAction("Index"); } else { return View(); } }
public void InsertOrUpdate(Link link) { if (link.LinkId == default(int)) { // New entity context.Links.Add(link); } else { // Existing entity context.Entry(link).State = EntityState.Modified; } }