public ActionResult Guncelle(int id) { Kullanici kullanici = Session["loginSU"] as Kullanici; if (id == kullanici.KullaniciId) { using (KullaniciRepository repo = new KullaniciRepository()) { Kullanici model = repo.GetOne(f => f.KullaniciId == id); return(View(model)); } } return(RedirectToAction("Index", "Main")); }