私は table を持っていますUserProfile。ここには、email、typeAccount、isActivated などのいくつかの追加フィールドがあります。
を取得するとMembership.GetUser().(..)、これらのフィールドがありません。
それを解決する方法は?そして、このフィールドの値を変更する方法は?
[Table("UserProfile")]
public class UserProfile
{
    [Key]
    [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
    public int UserId { get; set; }
    public string UserName { get; set; }
    public string Email { get; set; }
    public int typeAccount { get; set; }
    public bool activated { get; set; }
    public string activationcode { get; set; }
    public bool del { get; set; }
}
よろしく