IdentityUsers 在哪里上传到数据库?

Where are are IdentityUsers uploaded to the database?

我已经创建了一个 ASP.net 具有用户身份验证的核心网络应用程序。用户身份验证已自动执行,效果非常好。但是,我需要做两件事:

-添加一个文本字段'Name'到用户注册

-在写入AspNetUsers时将记录写入另一个(定制)table。

但是,我似乎找不到在哪里(意思是什么 file/method)可以完成这些事情。

我尝试并调试了网络应用程序,但没有帮助。 正如我所期望的那样 IdentityUsers 是使用 DbContext.Add 写入数据库的,我也搜索了它但也没有帮助。

提前致谢。

下面的文章解释了一切:https://docs.microsoft.com/en-us/aspnet/core/security/authentication/scaffold-identity?view=aspnetcore-2.1&tabs=visual-studio .