摘要: 参考:【老张的哲学】Ids4实战 自定义用户类(方便后续拓展) public class ApplicationUser : IdentityUser { public string Salt { get; set; } = GetRandomSalt(5, 5, 1, 1, 1); /// <su 阅读全文
posted @ 2021-09-25 15:32 wosperry 阅读(290) 评论(0) 推荐(0)
摘要: 说明:这不是第一个步骤,后面再补一下前面的文档 实现接口 IProfileService /// <summary> /// 通过此实现可以拓展相关的用户Profile信息 /// </summary> public class PerryProfileService : IProfileServi 阅读全文
posted @ 2021-09-25 14:36 wosperry 阅读(1133) 评论(0) 推荐(0)