public ActionResult EkitapSonuclar() { EkitapRep rep = new EkitapRep(); var sonuclar = rep.GetAll().Where(x => x.Baslik.ToLower().Contains(Session["aranacak"].ToString())); return(View(sonuclar)); }
// GET: EKitap public ActionResult Index() { EkitapRep eRep = new EkitapRep(); return(View(eRep.GetAll().OrderByDescending(x => x.EKitapID).Take(20))); }