/// <summary> /// Create a new Person object. /// </summary> /// <param name="id">Initial value of the Id 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.Int64 id, global::System.String firstName, global::System.String lastName) { Person person = new Person(); person.Id = id; person.FirstName = firstName; person.LastName = lastName; return person; }
/// <summary> /// Deprecated Method for adding a new object to the tbl_person EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddTotbl_person(Person person) { base.AddObject("tbl_person", person); }