04. PART 2 IdentityServer4 ASP.NET Core Identity .NET Core 3.1

如果您已经来到这里,那么祝贺你的坚持,最难的部分已经完成了。我们仅仅需要的 ASP.NET Core Identity 创建数据库迁移,来创建数据库表。我将帮助你理解新的 identity 表。如同 IdentityServer4 的表一样。在后继的教程中,我们将开始为用户添加自定义的属性,来开始扩展功能。

Database code-first migration

In Visual Studio open Package Manager Console. First we need to add the migration for ASP.NET Core Identity database context (IdentityDbContext). Like so

在 Visual Studio 中打开包管理器控制台。我们首先需要添加用于 ASP.NET Core Identity 的数据库上下文 (IdentityDbContext) 迁移。如下所示:

Add-Migration InitialIdentityDbMigration -c IdentityDbContext -o Data/Migrations/AspNetIdentity/AspNetIdentityDb



This will add database migration “InitialIdentityDbMigration” to “Data/Migrations/AspNetIdentity” folder right next to the IdentityServer4 migrations for configuration and persisted grants. Let’s update the database structure with ASP.NET Core Identity tables. In Package Manager Console execute update database command like so

这将会在 Data/Migrations/AspNetIdentity 文件夹中添加名为 InitialIdentityDbMigration 的数据库迁移。相邻于配置和持久授权的 IdentityServer4 迁移。然后,使用 ASP.NET Core Identity 更新数据库表结构。在包管理控制台中执行更新数据库的命令,如下所示:

Update-Database -Context IdentityDbContext

That’s it! We previously successfully migrated all temporary in-memory configuration to the database, now we also migrated the user store. Wow. Take a moment and relax now. Moment gone. Let’s see new tables we got to play with.

PS. Feel free to delete the “ScaffoldingReadme.txt” file from the project root. This readme file was automatically added when we did the ASP.NET Core Identity scaffolding.

好啦!上一次,我们成功地将临时保留在内存中的配置迁移到数据库中,现在,我们也迁移来用户存储。天哪。现在可以休息一下啦。好啦,现在可以看一下将要使用的表了。

PS:现在可以删除项目根目录中的 ScaffoldingReadme.txt 文件。该文件是在我们架构 ASP.NET Core Identity 的时候自动被添加进来的。

ASP.NET Core Identity tables

I used the MSSQL database in this example but it’s pretty much the same for PostgreSQL. Here is the list of tables that we have in the “IdentityServerQuickstart” database. Seven tables that start with the “AspNet” prefix are the ASP.NET Core Identity tables that hold user store (users, claims, roles, logins, and user tokens).

在该示例中,我使用的是 MSSQL 数据库,但是对于 PostgreSQL 来说及其类似。下面是 IdentityServerQuickstart 数据库中数据表的列表。7 张以 AspNet 为前缀的表是 ASP.NET Core Identity 表,用来持有用户存储 (users, claims, roles, logins 以及用户的令牌)

Let’s see the relationship between ASP.NET Core Identity tables in a diagram

下图中是 ASP.NET Core Identity 表之间的关系。

  • “dbo.AspNetRoleClaims” 保存赋予特定角色的声明.
  • “dbo.AspNetRoles” 角色表。保存所有可以赋予用户的角色
  • “dbo.AspNetUserClaims” 用户的声明。声明与角色不同,声明就是一个键值对。你可以有角色或者没有。声明为特定的声明提供值,从另一个角度看,可以看作赋予用户的可选的属性。
  • “dbo.AspNetUserLogins” 该表连接外部用户到本地用户。table is connecting external users to local users. All users specified in
  • “dbo.AspNetUsers” table are local users. Say you want to login with Google and you want to link your Google account with your local account. This table holds that link so once you are linked you don’t have to go through the linking process again.
  • “dbo.AspNetUserRoles” table is a many-to-many relationship table that connects users with assigned roles.

    “dbo.AspNetUsers” table is holding users. All of the user properties like username, email, password are stored here. We can also add custom user properties here to extend the user.
  • “dbo.AspNetUserTokens” table is holding external authentication tokens. This table is also used for keeping TOTP authenticator keys and recovery codes for user.

Recap

We added migration for ASP.NET Core Identity, updated the database with new tables and learned about each table. I explained the rest of the tables (the non “AspNet” prefix tables) in my previous tutorial.

In my next tutorial we will start adding custom attributes to the user. “Hard” stuff is pretty much over, we are now off to customization and adding new features.

You can find the project here.

我们添加了针对 ASP.NET Core Identity 的迁移,使用新的表更新了数据库,学习了每张表的用途。其他非 AspNet 前缀的表在前面的教程中已经做过介绍了。

在下一教程中,我们将开始为用户添加自定义的属性。困难的工作已经过去了,我们现在可以定制并添加新的功能了。

04. PART 2 IdentityServer4 ASP.NET Core Identity .NET Core 3.1的更多相关文章

  1. IdentityServer4 中文文档 -14- (快速入门)使用 ASP.NET Core Identity

    IdentityServer4 中文文档 -14- (快速入门)使用 ASP.NET Core Identity 原文:http://docs.identityserver.io/en/release ...

  2. IdentityServer4【QuickStart】之使用asp.net core Identity

    使用asp.net core Identity IdentityServer灵活的设计中有一部分是可以将你的用户和他们的数据保存到数据库中的.如果你以一个新的用户数据库开始,那么,asp.net co ...

  3. IdentityServer(12)- 使用 ASP.NET Core Identity

    IdentityServer具有非常好的扩展性,其中用户及其数据(包括密码)部分你可以使用任何想要的数据库进行持久化. 如果需要一个新的用户数据库,那么ASP.NET Core Identity是你的 ...

  4. .net core Identity集成IdentityServer4 (1)基本操作

    一. 新建asp.net core identity项目 新建项目->asp.net core web应用程序-> web应用程序(模型视图控制器)&更改身份验证为个人. 新建一个 ...

  5. ASP.NET Core Identity 迁移数据 - ASP.NET Core 基础教程 - 简单教程,简单编程

    原文:ASP.NET Core Identity 迁移数据 - ASP.NET Core 基础教程 - 简单教程,简单编程 ASP.NET Core Identity 迁移数据 上一章节中我们配置了 ...

  6. 从零搭建一个IdentityServer——集成Asp.net core Identity

    前面的文章使用Asp.net core 5.0以及IdentityServer4搭建了一个基础的验证服务器,并实现了基于客户端证书的Oauth2.0授权流程,以及通过access token访问被保护 ...

  7. IdentityServer4 ASP.NET Core的OpenID Connect OAuth 2.0框架学习保护API

    IdentityServer4 ASP.NET Core的OpenID Connect OAuth 2.0框架学习之保护API. 使用IdentityServer4 来实现使用客户端凭据保护ASP.N ...

  8. ASP.NET Core Identity Hands On(1)——Identity 初次体验

    ASP.NET Core Identity是用于构建ASP.NET Core Web应用程序的成员资格系统,包括成员资格.登录和用户数据存储 这是来自于 ASP.NET Core Identity 仓 ...

  9. ASP.NET Core Identity Hands On(2)——注册、登录、Claim

    上一篇文章(ASP.NET Core Identity Hands On(1)--Identity 初次体验)中,我们初识了Identity,并且详细分析了AspNetUsers用户存储表,这篇我们将 ...

  10. ASP.NET Core Identity 实战(2)——注册、登录、Claim

    上一篇文章(ASP.NET Core Identity Hands On(1)--Identity 初次体验)中,我们初识了Identity,并且详细分析了AspNetUsers用户存储表,这篇我们将 ...

随机推荐

  1. /proc/slabinfo 介绍

    slabinfo - version: 2.1 # name <active_objs> <num_objs> <objsize> <objperslab&g ...

  2. Android Systrace 基础知识 -- 分析 Systrace 预备知识

    1. 正文 1.1 线程状态查看 Systrace 会用不同的颜色来标识不同的线程状态, 在每个方法上面都会有对应的线程状态来标识目前线程所处的状态,通过查看线程状态我们可以知道目前的瓶颈是什么, 是 ...

  3. 对于python中GIL的一些理解与代码实现

    近期看了一些关于GIL的一些内容,敲一下代码看看效果. # coding:utf-8 # GIL(Global Interpreter Lock):他只允许任何时刻只有一个线程处于执行状态,即使是在具 ...

  4. Diffusion系列 - DDIM 公式推导 + 代码 -(三)

    DENOISING DIFFUSION IMPLICIT MODELS (DDIM) 从DDPM中我们知道,其扩散过程(前向过程.或加噪过程)被定义为一个马尔可夫过程,其去噪过程(也有叫逆向过程)也是 ...

  5. Kali && Debain 防火墙规则

    Kali && Debain 防火墙规则 查看防火墙规则 iptables -L -n -v iptables -L -n -v 增加防火墙规则:开放指定的端口 iptables -A ...

  6. [GXYCTF2019]BabyUpload 1

    打开靶机,上传文件抓包 后缀不能带ph,大小写也无法绕过,意味着phtml后缀也无法上传 对后缀只过滤ph,我们转变思路上传图片马,用.htaccess使图片马以php格式打开 上传图片马 上传失败, ...

  7. 强大灵活的文件上传库:FilePond 详解

    文件上传是 Web 开发中常见的功能,尤其是对于图片.视频.文档等大文件的处理,如何既保证用户体验,又兼顾安全和性能,是每位开发者关心的问题.在这样的背景下,FilePond 作为一款灵活强大的文件上 ...

  8. Seralizable

    class CSer { private String name; private int age; public CSer() { } public CSer(String name, int ag ...

  9. Python 潮流周刊#74:创下吉尼斯世界记录的 Python 编程课(摘要)

    本周刊由 Python猫 出品,精心筛选国内外的 250+ 信息源,为你挑选最值得分享的文章.教程.开源项目.软件工具.播客和视频.热门话题等内容.愿景:帮助所有读者精进 Python 技术,并增长职 ...

  10. 海外SRC信息收集工具

    海外SRC信息收集 ​ 子域名爆破工具:bbot,subfinder ​ 相关测评:https://blog.blacklanternsecurity.com/p/subdomain-enumerat ...