私の現在のコードは以下の通りです。mvc 5のカスタムユーザー情報を取得して設定する方法
public class ApplicationUser : IdentityUser
{
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
{
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// Add custom user claims here
return userIdentity;
}
}
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext()
: base("DefaultConnection", throwIfV1Schema: false)
{
}
public static ApplicationDbContext Create()
{
return new ApplicationDbContext();
}
}
は、私は私のログインアクションがhere
のようにそれを呼び出すことができます。単純な認証の場合、 'UserManager.FindById(User.Identity.GetUserId());' –
[これ](http://stackoverflow.com/questions/38846816/how-to-get-custom-property- application-in-the-asp-net-mvc-5-vie/38847016#38847016)が役に立ちます – tmg
@AdrianoRepetti http://stackoverflow.com/questions/28335353/how-to-extendをご確認ください利用可能なユーザー属性の属性 – Bharat