我是ASP.Net.Core.Identity.2。的新手。我以前使用Net.Core 2.2推出了自己的安全性。我无法升级我的代码,因为大多数代码无法正常工作,因此我决定进行切换。我要做的就是向User
添加新属性,以便可以执行以下操作:-
User.FirstName //or
User.Identity.FirstName
//or some other syntax
我已经阅读了很多文章,并尝试了一些示例,但是却一无所获,这些示例要么不起作用,要么给我设计时间错误,要么给我运行时间错误。
我已经通过如下类进行了修改。并更新了数据库。我可以在数据库中看到新字段。但是接下来我该怎么办?做到这一点很容易,但现在我完全陷入了困境。
public partial class SystemUser : IdentityUser<int>
{
//public int Id { get; set; }
public string Title { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Mobile { get; set; }
public string JobTitle { get; set; }
public string Hint { get; set; }
public int AddressId { get; set; }
public bool IsActive { get; set; }
//
// Summary:
// Gets or sets the date and time, in UTC, when any user lockout ends.
//
// Remarks:
// A value in the past means the user is not locked out.
[Column(TypeName = "datetime")]
public override DateTimeOffset? LockoutEnd { get; set; }
}
我什至不能做这样的事情
SystemUser user = _context.SystemUser.Where(s => s.UserName == User.Identity.Name).FirstOrDefault();
因为那根本不带任何东西。我似乎无所事事:(
我正在使用VS2017,MySql,Pomelo.EntityFrameworkCore.MySql。任何帮助将不胜感激。预先感谢。
要使其正常工作,我要做的就是
它现在正在工作,但我不知道还有什么其他隐藏的宝石在等我
答案 0 :(得分:1)
要自定义IdentityUser
,无需将SystemUser
添加到DbContext
。
请按照以下步骤操作:
SystemUser
public class SystemUser : IdentityUser<int>
{
public string FirstName { get; set; }
public string LastName { get; set; }
//your other properties
}
ApplicationDbContext
public class ApplicationDbContext : IdentityDbContext<SystemUser,IdentityRole<int>,int>
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
}
}
IdentityHostingStartup
public class IdentityHostingStartup : IHostingStartup
{
public void Configure(IWebHostBuilder builder)
{
builder.ConfigureServices((context, services) => {
services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlServer(
context.Configuration.GetConnectionString("ApplicationDbContextConnection")));
services.AddDefaultIdentity<SystemUser>()
.AddEntityFrameworkStores<ApplicationDbContext>();
});
}
}
用例
public class HomeController : Controller
{
private readonly ApplicationDbContext _context;
private readonly UserManager<SystemUser> _userManager;
public HomeController(ApplicationDbContext context
, UserManager<SystemUser> userManager)
{
_context = context;
_userManager = userManager;
}
[Authorize]
public async Task<IActionResult> Index()
{
SystemUser user = _context.Users.Where(s => s.UserName == User.Identity.Name).FirstOrDefault();
SystemUser user1 = await _userManager.FindByNameAsync(User.Identity.Name);
return View();
}
}