public void InsertOrUpdate(ROLE role) { if (role.ID == default(decimal)) { // New entity context.ROLEs.Add(role); } else { // Existing entity context.Entry(role).State = EntityState.Modified; } }
public ActionResult Create(ROLE role) { if (ModelState.IsValid) { roleRepository.InsertOrUpdate(role); roleRepository.Save(); return RedirectToAction("Index"); } else { return View(); } }