/// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="email">Initial value of the Email property.</param>
 /// <param name="updatedAt">Initial value of the UpdatedAt property.</param>
 /// <param name="createdAt">Initial value of the CreatedAt property.</param>
 public static User CreateUser(global::System.Int32 id, global::System.String name, global::System.String email, global::System.DateTime updatedAt, global::System.DateTime createdAt)
 {
     User user = new User();
     user.Id = id;
     user.Name = name;
     user.Email = email;
     user.UpdatedAt = updatedAt;
     user.CreatedAt = createdAt;
     return user;
 }
 /// <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);
 }