Esempio n. 1
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);
 }
Esempio n. 2
0
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="userId">Initial value of the UserId property.</param>
 /// <param name="profileId">Initial value of the ProfileId property.</param>
 /// <param name="userName">Initial value of the UserName property.</param>
 /// <param name="password">Initial value of the Password property.</param>
 /// <param name="passwordSalt">Initial value of the PasswordSalt property.</param>
 public static User CreateUser(global::System.Int32 userId, global::System.Int32 profileId, global::System.String userName, global::System.String password, global::System.String passwordSalt)
 {
     User user = new User();
     user.UserId = userId;
     user.ProfileId = profileId;
     user.UserName = userName;
     user.Password = password;
     user.PasswordSalt = passwordSalt;
     return user;
 }