public ActionResult Muokkaa(Kohde kohde)
 {
     if (ModelState.IsValid) {
         _kohdeRepository.InsertOrUpdate(kohde);
         _kohdeRepository.Save();
         return RedirectToAction("Kohdelista");
     }
     return View();
 }
 public void InsertOrUpdate(Kohde kohde)
 {
     if (kohde.Id == default(int)) {
         // New entity
         context.Kohteet.Add(kohde);
     } else {
         // Existing entity
         context.Entry(kohde).State = EntityState.Modified;
     }
 }