/// <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="user_id">Initial value of the user_id property.</param>
 /// <param name="user_login">Initial value of the user_login property.</param>
 /// <param name="user_pass">Initial value of the user_pass property.</param>
 public static User CreateUser(global::System.Int32 user_id, global::System.String user_login, global::System.String user_pass)
 {
     User user = new User();
     user.user_id = user_id;
     user.user_login = user_login;
     user.user_pass = user_pass;
     return user;
 }