ABP 对 Microsoft.AspNetCore.Identity 规则的封装

1.在 Core.Shared.PasswordComplexitySettingStore 中定义了密码规则的 Dto Security.PasswordComplexitySetting.cs 该 Dto 定义了密码规则,该规则对应的就是 Microsoft.AspNetCore.Identity.HashPassword 中的密码规则。 

2.在 Application 层 Configuration 中初始化 Host & Tenants 时加载 ABP 中的默认设置。

3.ABP 在加载时,会使用默认设置。如果有修改则会将数据保存至 AbpSettings 表中。

原文地址:https://www.cnblogs.com/fxck/p/13076773.html