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