IdentityUser機能にユーザ情報を新たに追加する
1291 ワード
「Add custom user claims here」の下に値を追記する。
※自動生成されるテーブル「AspUserInfo」?をカスタムしてUserに変更しています。それのEntityパーシャルして追記。
filename
public partial class User : IUser<decimal>
{
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<User, decimal> manager, string authenticationType)
{
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, authenticationType);
// Add custom user claims here
userIdentity.AddClaim(new Claim(ClaimTypes.Email, "[email protected]"));
return userIdentity;
}
}
取り出し方は
filename
var principal = HttpContext.Current.User as ClaimsPrincipal;
var email = principal.Claims.Where(x=> x.Type == ClaimTypes.Email).Value;
C#ってわかりずらいね。誰からも使われないようにするための戦略なんだろう。
ビバ!ユーザーアイデンティティ!!
Author And Source
この問題について(IdentityUser機能にユーザ情報を新たに追加する), 我々は、より多くの情報をここで見つけました https://qiita.com/kotaroino@github/items/531224e022d3f660728a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .