示例#1
0
        public void CreateUser(string username, string passwordhash)
        {
            Entities = new FrontiersEntities();
            User newUser = new User();
            newUser.username = username;
            newUser.salt = "1";
            newUser.passwordhash = passwordhash;

            Entities.Users.AddObject(newUser);
            Entities.SaveChanges();
        }
示例#2
0
 /// <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);
 }
示例#3
0
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="username">Initial value of the username property.</param>
 /// <param name="salt">Initial value of the salt property.</param>
 /// <param name="passwordhash">Initial value of the passwordhash property.</param>
 public static User CreateUser(global::System.Int32 id, global::System.String username, global::System.String salt, global::System.String passwordhash)
 {
     User user = new User();
     user.id = id;
     user.username = username;
     user.salt = salt;
     user.passwordhash = passwordhash;
     return user;
 }