Exemplo n.º 1
0
 public List <Students> GetStudentsEntity()
 {
     using (var context = new SkolenieEntities())
     {
         return(context.Students
                .Where(o => o.FirstName == "Honza")
                .Take(5).ToList());
     }
 }
Exemplo n.º 2
0
 public List<Students> GetStudentsEntity()
 {
     using (var context = new SkolenieEntities())
     {
         return context.Students
             .Where(o => o.FirstName == "Honza")
             .Take(5).ToList();
     }
 }