无法从Scaffolding创建新帐户

时间:2018-06-11 22:14:24

标签: c# asp.net-identity entity-framework-core scaffolding

我尝试使用新的.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();
            });
        }
    }
}

1 个答案:

答案 0 :(得分:3)

此错误通常表明您的数据库中没有AspNetUsers表。您是否运行了脚手架中提供的迁移?这可以通过PowerShell或控制台终端完成。如果使用powershell或Update-Database用于控制台,则导航到Web项目并执行dotnet ef database updatehttps://docs.microsoft.com/en-us/ef/core/managing-schemas/migrations/