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