如何获取ASP.Net MVC 5中AspNetUsers表中的ApplicationUser数量?

时间:2016-08-09 08:38:19

标签: c# asp.net asp.net-mvc asp.net-mvc-5

有没有办法让AspNetUsers表格中的用户数量由ASP.Net MVC 5自动创建?

在您启动ApplicationDbContext项目时在IdentityModels.cs文件中自动创建的ASP.Net MVC 5中,我看不到类似的内容:

public DbSet<ApplicationUser> ApplicationUsers { get; set; }

这是表示和获取数据库表中某个连接的条目的典型方法。

1 个答案:

答案 0 :(得分:3)

您的上下文正在使用Identity(可能是v2),这意味着它继承自IdentityDbContext,您将看到users DbSet。所以你应该能够写出这样的东西:

var userCount = context.Users.Count();