partial void DeleteStudent(Student instance);
 partial void UpdateStudent(Student instance);
 private void detach_Student(Student entity)
 {
     this.SendPropertyChanging();
     entity.Groups = null;
 }
 partial void InsertStudent(Student instance);
 private void attach_Student(Student entity)
 {
     this.SendPropertyChanging();
     entity.Groups = this;
 }