public ActionResult Create(Region region) { if (ModelState.IsValid) { regionRepository.InsertOrUpdate(region); regionRepository.Save(); return RedirectToAction("Index"); } else { return View(); } }
public void InsertOrUpdate(Region region) { if (region.ID == default(int)) { // New entity context.Region.Add(region); } else { // Existing entity context.Region.Attach(region); context.Entry(region).State = EntityState.Modified; } }