MVC-4 で SimpleMembership プロバイダーを使用して、以下のように少数のユーザーの登録の詳細をシードしようとしています。
public class ContextInitializer : DropCreateDatabaseAlways<AccountsContext>
{
protected override void Seed(AccountsContext context)
{
base.Seed(context);
context.UserProfiles.Add(new UserProfile { UserId = 1, UserName = "admin" });
context.UserProfiles.Add(new UserProfile { UserId = 2, UserName = "user1" });
}
}
しかし、 UserProfile クラスに見つからないため、password
&を設定できません。confirmPassword
これらは、AccountsContext から直接アクセスできない RegisterModel クラスにあります。