/// <summary> /// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToUsers(User user) { base.AddObject("Users", user); }
/// <summary> /// Create a new User object. /// </summary> /// <param name="username">Initial value of the Username property.</param> /// <param name="password">Initial value of the Password property.</param> /// <param name="roleid">Initial value of the Roleid property.</param> /// <param name="userid">Initial value of the Userid property.</param> public static User CreateUser(global::System.String username, global::System.String password, global::System.Int32 roleid, global::System.Int32 userid) { User user = new User(); user.Username = username; user.Password = password; user.Roleid = roleid; user.Userid = userid; return user; }