Beispiel #1
0
        public bool DeleteStudent(string index)
        {
            var db = new s14354Context();
            var s  = new Student
            {
                IndexNumber = index
            };

            db.Attach(s);
            db.Remove(s);
            return(true);
        }