/// <summary>
 /// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUsers(User user)
 {
     base.AddObject("Users", user);
 }
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="phone">Initial value of the Phone property.</param>
 /// <param name="fullName">Initial value of the FullName property.</param>
 public static User CreateUser(global::System.Int32 id, global::System.String phone, FullName fullName)
 {
     User user = new User();
     user.Id = id;
     user.Phone = phone;
     user.FullName = StructuralObject.VerifyComplexObjectIsNotNull(fullName, "FullName");
     return user;
 }