Example #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Person EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPerson(Person person)
 {
     base.AddObject("Person", person);
 }
Example #2
0
 /// <summary>
 /// Create a new Person object.
 /// </summary>
 /// <param name="personID">Initial value of the PersonID property.</param>
 /// <param name="firstname">Initial value of the Firstname property.</param>
 /// <param name="lastname">Initial value of the Lastname property.</param>
 public static Person CreatePerson(global::System.Int32 personID, global::System.String firstname, global::System.String lastname)
 {
     Person person = new Person();
     person.PersonID = personID;
     person.Firstname = firstname;
     person.Lastname = lastname;
     return person;
 }