public JsonResult getAlunoDetails(int userId) { IList <Aluno> FoodList = new List <Aluno>(); FoodList = AlunoDao.FindAllByIDs(userId); return(Json(new { FoodList = FoodList }, JsonRequestBehavior.AllowGet)); }