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