/// <summary> /// Create a new Student object. /// </summary> /// <param name="id">Initial value of the ID property.</param> public static Student CreateStudent(global::System.String id) { Student student = new Student(); student.ID = id; return student; }
/// <summary> /// Deprecated Method for adding a new object to the Students EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToStudents(Student student) { base.AddObject("Students", student); }