我尝试使用新的.Net Core 2.1中的新身份脚手架从头开始创建授权和身份验证,但不断收到此错误。
SqlException:无效的对象名称' AspNetUsers'。
RegisterModel无法在此行执行:
var result = await _userManager.CreateAsync(user, Input.Password);
IDENTITYHOSTINGSTARTUP.CS
[assembly: HostingStartup(typeof(Authorize.Areas.Identity.IdentityHostingStartup))]
namespace Authorize.Areas.Identity
{
public class IdentityHostingStartup : IHostingStartup
{
public void Configure(IWebHostBuilder builder)
{
builder.ConfigureServices((context, services) => {
services.AddDbContext<AuthorizeContext>(options =>
options.UseSqlServer(
context.Configuration.GetConnectionString("AuthorizeContextConnection")));
services.AddDefaultIdentity<AuthorizeUser>()
.AddEntityFrameworkStores<AuthorizeContext>()
.AddDefaultTokenProviders();
});
}
}
}
答案 0 :(得分:3)
此错误通常表明您的数据库中没有AspNetUsers表。您是否运行了脚手架中提供的迁移?这可以通过PowerShell或控制台终端完成。如果使用powershell或Update-Database
用于控制台,则导航到Web项目并执行dotnet ef database update
。
https://docs.microsoft.com/en-us/ef/core/managing-schemas/migrations/