/// <summary> /// Create a new Student object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="status">Initial value of the Status property.</param> public static Student CreateStudent(global::System.Int32 id, global::System.String status) { Student student = new Student(); student.Id = id; student.Status = status; 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); }