### 描述 asp.net Core Identity提供給我們一組工具包和API,能幫助我們應用程式創建授權和認證功能。也可以用它創建賬戶並使用用戶名和密碼進行登錄,同時也提供了角色和角色管理功能。 #### 1.創建項目 - 配置項 - nuget包 - Microsoft.AspNetCor ...
描述
asp.net Core Identity提供給我們一組工具包和API,能幫助我們應用程式創建授權和認證功能。也可以用它創建賬戶並使用用戶名和密碼進行登錄,同時也提供了角色和角色管理功能。
1.創建項目
- 配置項
- nuget包
- Microsoft.AspNetCore.Identity.EntityFrameWorkCore
- Microsoft.EntityFrameworkCore.Design
- Microsoft.EntityFrameworkCore.SqlServer
- nuget包
- 配置項目
Program.cs
app.UseAuthorization();
app.UseAuthorization();
-
設置Asp.net Core Identity
User類
User類繼承IdentityUser類,位於Microsoft.AspNetCore.Identity中 在Models文件夾中穿件AppUser類 IdentityUser類中提供了一些用戶屬性,如:用戶名、電子郵件、電話、密碼hash值等。 如果IdentityUser類不能滿足要求,可以在AppUser中添加自定義的屬性
IdentityUser常用屬性
名稱 | 描述 |
---|---|
ID | 用戶唯一ID |
UserName | 用戶名稱 |
用戶Email | |
PasswordHash | 用戶密碼Hash的值 |
PhoneNumber | 用戶電話號碼 |
SecurityStamp | 當每次用戶的數據修改時生成隨機值 |
創建Database Context
DataBase Context類繼承IdentityDbContext<T>類,T表示User類,在應用程式中使用AppUser,IdentityDbContext通過使用EntityFrameworkCore和資料庫進行交互
AppIdentyDbContext繼承IdentityDbContext
namespace IdentityDemo1.Models
{
public class AppIdentityDbContext : IdentityDbContext<AppUser>
{
public AppIdentityDbContext(DbContextOptions<AppIdentityDbContext> options) : base(options)
{
}
}
}
創建資料庫字元串連接
appsettings.json中配置
appsettings.json中配置資料庫連接字元串
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ConnectionStrings": {
"Default": "Data Source=.;Initial Catalog=IdentityDemo;Integrated Security=True;Trusted_Connection=True;MultipleActiveResultSets=true;TrustServerCertificate=true"
},
"AllowedHosts": "*"
}
點擊查看代碼
builder.Services.AddDbContext<AppIdentityDbContext>(opt =>
{
opt.UseSqlServer(builder.Configuration["ConnectionStrings:Default"]);
});
添加Asp.Net Identity服務
添加Asp.Net Identity服務
builder.Services.AddIdentity<AppUser, IdentityRole>()
.AddEntityFrameworkStores<AppIdentityDbContext>()
.AddDefaultTokenProviders();
使用EF Migration命令創建Identity資料庫
nuget命令
nuget EntityFrameworkCore.Tool
Add-Migration InitCreateDB
update-database
執行後的結果是
包含用戶記錄,角色,Claims,token 和登錄次數詳細信息等。
- __EFMigrationsHistory:包含了前面所有的Migration
- AspNetRoleClaims :按角色存儲Claims
- AspNetRoles:存儲所有角色
- AspNetUserClaims :存儲用戶的Claims
- AspNetUserLogins :存儲用戶的登錄次數
- AspNetUserRoles: 存儲用戶的對應的角色
- AspNetUsers:存儲用戶
- AspNetUserTokens 存儲外部認證的token