CodeGo.net>如何获取ASP.Net MVC 5的AspNetUsers表中的ApplicationUser数量?
作者:互联网
有什么方法可以获取由ASP.Net MVC 5自动创建的AspNetUsers表中的用户数量?
在启动ASP.Net MVC 5项目时在IdentityModels.cs文件中自动创建的ApplicationDbContext中,我看不到以下内容:
public DbSet<ApplicationUser> ApplicationUsers { get; set; }
这是表示和获取特定连接的数据库表中条目的一种典型方法.
解决方法:
您的上下文使用的是Identity(可能是v2),这意味着它继承自IdentityDbContext
,即您将看到的users DbSet
.因此,您应该能够编写如下内容:
var userCount = context.Users.Count();
标签:asp-net-mvc-5,asp-net,c,asp-net-mvc 来源: https://codeday.me/bug/20191118/2027204.html