Sql 异常:无效的列名称“NormalizedUserName

问题描述 投票:0回答:3

我是 asp.net core 的新手,我使用 Identity Core 使用 Asp.Net Core 2.2 +EF 创建了一个应用程序来创建注册页面,在运行应用程序并引入一些测试数据(电子邮件、密码)后出现此错误:

SqlException: Invalid column name 'NormalizedUserName'.
              Invalid column name 'AccessFailedCount'.
              Invalid column name 'ConcurrencyStamp'.
              Invalid column name 'Email'.
              Invalid column name 'EmailConfirmed'.
              Invalid column name 'LockoutEnabled'.
              Invalid column name 'LockoutEnd'.
              Invalid column name 'NormalizedEmail'.
              Invalid column name 'NormalizedUserName'.
              Invalid column name 'PasswordHash'.
              Invalid column name 'PhoneNumber'.
              Invalid column name 'PhoneNumberConfirmed'.
              Invalid column name 'SecurityStamp'.
              Invalid column name 'TwoFactorEnabled'.
              Invalid column name 'UserName'.

我创建了一个表,但没有像上面那样命名的列(我的列只有“电子邮件地址”和“密码”)

帐户控制器(忽略登录方法):

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.AspNetCore.Mvc;
using XmlViewer.Models;
using XmlViewer.ViewModels;

namespace XmlViewer.Controllers
{
    public class AccountController : Controller
    {
        private readonly UserManager<ApplicationUser> _userManager;
        private readonly SignInManager<ApplicationUser> _signInManager;

        public AccountController(UserManager<ApplicationUser> userManager, SignInManager<ApplicationUser> signInManager)
        {
            _userManager = userManager;
            _signInManager = signInManager;
        }

        [HttpGet]

        [HttpGet]

        public IActionResult Login()
        {
            return View();
        }
        [HttpPost]

        public async Task<IActionResult> Login(LoginViewModel vm)//model binding
        {
            //date din vm sunt bune:
            if(ModelState.IsValid)
            {
                var result = await _signInManager.PasswordSignInAsync(vm.Email, vm.Password, vm.RememberMe, false);//folosit para pt IsPersistent(BOOL)
                if(result.Succeeded)
                {
                    return RedirectToAction("Privacy", "Home");
                }
                ModelState.AddModelError("","Invalid Login. Please Check your username/email or password.");
                return View(vm);
            }
            return View(vm);
        }

        public IActionResult Register()
        {
            return View();
        }

        [HttpPost]

        public async Task<IActionResult> Register(RegisterViewModel vm)//model binding
        {
            if (ModelState.IsValid)
            {

                var user = new ApplicationUser { UserName = vm.Email, Email = vm.Email };
                var result = await _userManager.CreateAsync(user, vm.Password);

                if (result.Succeeded)
                {
                    await _signInManager.SignInAsync(user, false);
                    return RedirectToAction("Index", "Home");

                }
                else
                {
                    foreach (var error in result.Errors)
                    {
                        ModelState.AddModelError("", error.Description); //erori de inregistrare in cont
                    }//iterare prin fiecare eroare

                }
            }
            return View(vm);
        }
    }
}

上下文模型:

    using Microsoft.AspNetCore.Identity;
    using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
    using Microsoft.EntityFrameworkCore;
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Threading.Tasks;


    namespace XmlViewer.Models
    {
    public class XmlViewerContext : IdentityDbContext<ApplicationUser>
    {
        //constructor
        //added migration Initial-Migration:tabelul de date in DB se creeaza dupa
        public XmlViewerContext(DbContextOptions<XmlViewerContext> options) : base(options)
        {

        }
        protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            base.OnModelCreating(modelBuilder);

            modelBuilder.Entity<ApplicationUser>().ToTable("Register").Property(p => p.Id).HasColumnName("EmailAddress"); ;
            modelBuilder.Entity<ApplicationUser>().ToTable("Register").Property(p => p.Id).HasColumnName("Password");



        }
    }
}

启动:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.HttpsPolicy;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.EntityFrameworkCore;
using XmlViewer.Models;
using Microsoft.AspNetCore.Identity;

namespace XmlViewer
{
    public class Startup
    {
        public static int Progress { get; set; }
        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;
        }

        public IConfiguration Configuration { get; }

        // This method gets called by the runtime. Use this method to add services to the container.
        public void ConfigureServices(IServiceCollection services)
        {
            services.Configure<CookiePolicyOptions>(options =>
            {
                // This lambda determines whether user consent for non-essential cookies is needed for a given request.
                options.CheckConsentNeeded = context => true;
                options.MinimumSameSitePolicy = SameSiteMode.None;
            });
            services.AddIdentity<ApplicationUser, IdentityRole>()
                .AddEntityFrameworkStores<XmlViewerContext>()
                .AddDefaultTokenProviders();
            services.AddDbContext<XmlViewerContext>(options => options.UseSqlServer(@"Data Source = (localdb)\ProjectsV13; Initial Catalog = XmlViewer; Integrated Security = True; Connect Timeout = 30;"));
            //Alta baza de date nu master
            services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);

        }

        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }
            app.UseAuthentication();
            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseCookiePolicy();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Account}/{action=Register}/{id?}");
            });
        }
    }
}
c# database asp.net-core asp.net-identity
3个回答
22
投票

@AlexGodo 我知道这个主题已经过时了,但它可能会帮助那些不想使用迁移而只想连接到现有

AspNet*
表的人将 ASP.NET 项目移动到 ASP.NET Core。 要解决缺失列的问题,只需将它们添加到
AspNetUsers
表中(例如通过 SSMS):

我缺少 4 列,其中

NormalizedUserName
是重要的一列(随机数据类型 - TBC):

NormalizedUserName nvarchar(256), null
NormalizedEmail nvarchar(256), null
LockoutEnd datetime, null
ConcurrencyStamp nvarchar(256), null

为了能够登录,我运行了更新来填充 NormalizedUserName 列,如下所示:

update AspNetUsers
   set NormalizedUserName = UPPER(Email)
where NormalizedUserName is null

注意: 通过 ASP.NET Core 网站登录后,

PasswordHash
列条目发生变化,因此无法再通过旧网站登录。 (如果需要,最好对此列进行备份。)

希望这有帮助。


0
投票

当您搭建

Identity
时(通过单击 Visual Studio 中的“个人用户帐户”),它会为您生成模型。您需要在该模型上运行迁移。这将创建 AspNet* 表,其中包含您缺少的列。 看起来您手动创建了这些表,但没有 Microsoft Identity 所需的列


0
投票

如果你不想使用这些外部列,又想继承Identity,你可以声明列名(public string NormalizedName {get;set;})并在其上方添加[NotMapped],因此实体框架将忽略希望这有帮助

© www.soinside.com 2019 - 2024. All rights reserved.