欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Asp.net core Identity的配置

程序员文章站 2023-12-28 14:51:22
...

 

使用Asp.net core Identity进行身份验证的,可以参考使用如下的代码样版。这套样板代码包括:

(1)AddDbContextPool  添加数据库配置信息

(2)AddIdentity  配置IdenittyUser和IdentityRole及对应的Repositoty

(3)Configure<IdentityOptions>  对IdentityOptions的进一步配置,可选。也可以在上一步AddIdentity全部配置完成

(4)ConfigureApplicationCookie  对Cookie的配置

(5)Configure<PasswordHasherOptions>对于密码哈希的配置

                     //添加数据库的配置信息
            services.AddDbContextPool<WebApplication4Context>(
                dbContextOptions => dbContextOptions
                .UseMySql(
                // Replace with your connection string.
                Configuration.GetConnectionString("MySqlConnection"),
                //"server=localhost;port=3060;user=root;password=123;database=test",
                // Replace with your server version and type.
                
相关标签: Asp.Net Core

上一篇:

下一篇: