/// <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="name">Initial value of the Name property.</param>
 /// <param name="email">Initial value of the Email property.</param>
 /// <param name="password">Initial value of the Password property.</param>
 /// <param name="salt">Initial value of the Salt property.</param>
 /// <param name="birthday">Initial value of the Birthday property.</param>
 /// <param name="facebookToken">Initial value of the FacebookToken property.</param>
 /// <param name="headOfHouse">Initial value of the HeadOfHouse property.</param>
 /// <param name="school_Id">Initial value of the School_Id property.</param>
 public static User CreateUser(global::System.Int32 id, global::System.String name, global::System.String email, global::System.String password, global::System.String salt, global::System.DateTime birthday, global::System.String facebookToken, global::System.Boolean headOfHouse, global::System.Int32 school_Id)
 {
     User user = new User();
     user.Id = id;
     user.Name = name;
     user.Email = email;
     user.Password = password;
     user.Salt = salt;
     user.Birthday = birthday;
     user.FacebookToken = facebookToken;
     user.HeadOfHouse = headOfHouse;
     user.School_Id = school_Id;
     return user;
 }