在我的MVC应用程序中,我使用TPT继承创建了基本ASP Identity ApplicationUser
类的两个子类,并希望向对象添加一些声明,以允许我轻松地在视图中显示子类的属性。
我一定错过了一个简单的技巧/对ASP标识设置有根本的误解,但我看不到如何做到这一点。
将Claims 添加到 ApplicationUser
类很简单,但您执行此操作的GenerateUserIdentityAsync
方法不能在子类中重写以允许我在那里执行此操作。
有没有办法简单地实现这一点(因为此设置的其他一切都运行良好),还是我必须设置我的两个ApplicationUser
子类以直接从IdentityUser
继承,并在IdentityConfig.cs
中为它们设置两个配置?
我所说的类如下:
//The ApplicationUser 'base' class
public class ApplicationUser : IdentityUser
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string ProfilePicture { get; set; }
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
//** can add claims without any problems here **
userIdentity.AddClaim(new Claim(ClaimTypes.Name, String.Format("{0} {1}", this.FirstName, this.LastName)));I
return userIdentity;
}
}
public class MyUserType1 : ApplicationUser
{
[DisplayName("Job Title")]
public string JobTitle { get; set; }
//** How do I add a claim for JobTitle here? **
}
public class MyUserType2 : ApplicationUser
{
[DisplayName("Customer Name")]
public string CustomerName { get; set; }
//** How do I add a claim for CustomerName here? **
}
你可以使 GenerateUserIdentityAsync 成为 ApplicationUser 中的虚拟方法,这将允许您覆盖具体类型中的实现。
这是我能看到的最干净的选择。