Пример #1
0
        public void Post([FromBody] Instructor ÚjOktató)
        {
            StudiesContext context = new StudiesContext();

            context.Instructors.Add(ÚjOktató);
            context.SaveChanges();
        }
Пример #2
0
        public void Delete(int id)
        {
            StudiesContext context        = new StudiesContext();
            var            törlendőOktató = (from x in context.Instructors
                                             where x.InstructorSk == id
                                             select x).FirstOrDefault();

            context.Remove(törlendőOktató);
            context.SaveChanges();
        }