public ActionResult Create(Category category) { if (ModelState.IsValid) { _categoryRepository.InsertOrUpdate(category); _categoryRepository.Save(); return RedirectToAction("Index"); } return View(category); }
public void InsertOrUpdate(Category category) { if (category.CategoryId == default(int)) { // New entity context.Categories.Add(category); } else { // Existing entity context.Entry(category).State = EntityState.Modified; } }