示例#1
0
 // GET: Enrollments
 public ActionResult Index()
 {
     return(View(from e in _Eobj.GetAll() select e));
 }
 // GET: Courses
 public ActionResult Index()
 {
     return(View(from c in _Courseobj.GetAll() select c));
 }
示例#3
0
 // GET: Course
 public ActionResult Index()
 {
     return(View(from c in Cobj.GetAll() select c));      //lamba expression in the method to retrive all the data from database using lamba expression
 }