登録ページですべての関連情報ユーザー、役割、およびプロファイル情報を収集する最善の方法は何ですか? 私の現在のアプローチは、レジスタ モデルに追加のフィールドを設定することです。
public class RegisterModel
{
[Required]
[Display(Name = "Email")]
[DataType(DataType.EmailAddress)]
public string UserName { get; set; }
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Confirm password")]
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
[Required]
[Display(Name = "Account type")]
public string Role { get; set; }
}
最後の項目として役割を参照してください。ここにもプロフィール情報を追加する予定です。
次に、コントローラーでこれを行います。
public ActionResult Register(RegisterModel model)...
WebSecurity.CreateUserAndAccount(model.UserName, model.Password);
WebSecurity.Login(model.UserName, model.Password);
Roles.AddUserToRole(model.UserName, model.Role);
UserProfile クラスの一部ではありませんが、これらの追加のデータ要素を渡しても問題ありませんか? 私がやっていることはうまくいきますが、間違っているようです。