Ejemplo n.º 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);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Create a new Person object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="age">Initial value of the Age property.</param>
 public static Person CreatePerson(global::System.Int64 id, global::System.String name, global::System.Int64 age)
 {
     Person person = new Person();
     person.Id = id;
     person.Name = name;
     person.Age = age;
     return person;
 }
Ejemplo n.º 3
0
 private static void WritePersonResult(string header, Person person)
 {
     Console.Write(header);
     Console.WriteLine(person != null ? String.Format("Id:{0}, Name:{1}, Age:{2}", person.Id, person.Name, person.Age) : "----- None -----");
 }