繁体   English   中英

在 ASP.NET MVC 中获取经过身份验证的用户数据

[英]Get Authenticated Identity User data in ASP.NET MVC

我创建了一个 ASP.NET Identity 实体框架,并在 ASP.NET Identity - MVC 中为注册和登录功能添加了一个客户字段

身份模型.cs

  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;
            }
    
            //add custom fields
            public string FirstName { get; set; }
            public string LastName { get; set; }
            public bool IsAdministrator { get; set; }
    
        }

 public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
    {
        public ApplicationDbContext()
            : base("DefaultConnection", throwIfV1Schema: false)
        {
        }

        public DbSet<Property> Property { get; set; }

        public static ApplicationDbContext Create()
        {
            return new ApplicationDbContext();
        }
    }

在另一个名为 Property 的类中(登录和身份验证通过后)

我想调用 AspNetUsers 表中的一个字段,它是当前登录的字段。我想检查 IsAdministrator 字段及其值,并根据该值对要查看的内容做一些条件。

这是我所做的,但没有成功

 public class PropertyController : Controller
    {
        private ApplicationDbContext db = new ApplicationDbContext();
        

        // GET: Property
        [Authorize]
        public async Task<ActionResult> Index()
        {

            var user = System.Web.HttpContext.Current.User.Identity.GetUserId();
            bool admin = db.Users.SingleOrDefault(y => y.Id.Equals("user")).IsAdministrator;
            //return View(await db.Property.ToListAsync());
            if (admin == true){
                return View(await db.Property.Where(x => x.PropertyID == 1).ToListAsync()); }
            else  {
                return View(await db.Property.ToListAsync());}
           
        }

我能够提取当前登录用户的用户 ID,但我想要来自用户的另一个字段或信息,即 IsAdmin 字段,它要么是 1 要么是 0。

我怎样才能做到这一点?

这不起作用

 bool admin = db.Users.SingleOrDefault(y => y.Id.Equals("user")).IsAdministrator;

错误在此处输入图片说明

表达式SingleOrDefault(y => y.Id.Equals("user"))没有任何意义。 它将在数据库中搜索Id = "user" ,但一无所获。 这就是它返回 null 导致NullReferenceException原因。

尝试使用以下代码段

...
var userId = System.Web.HttpContext.Current.User.Identity.GetUserName();
var user = UserManager.FindByNameAsync(userId);
var isAdmin = user.IsAdministrator;
...

获取用户

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM