最新要闻

广告

手机

iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?

iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?

警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案

警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案

家电

Blazor入门100天 : 身份验证和授权 (3) - DB改Sqlite

来源:博客园


(资料图)

目录

  1. 建立默认带身份验证 Blazor 程序
  2. 角色/组件/特性/过程逻辑
  3. DB 改 Sqlite
  4. 将自定义字段添加到用户表
  5. 脚手架拉取IDS文件,本地化资源
  6. freesql 生成实体类,freesql 管理ids数据表
  7. 初始化 Roles,freesql 外键 => 导航属性
  8. 完善 freesql 和 bb 特性

本节源码

https://github.com/densen2014/Blazor100/tree/Blazor-教程15-3/b15blazorIDS

引用 EntityFrameworkCore.Sqlite 库

配置文件加入Sqlite数据库链接

appsettings.json文件加入一行代码 "IdsSQliteConnection": "Data Source=ids.db;"

最终文件如下

{  "ConnectionStrings": {    "DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=aspnet-b15blazorIDS-f969184b-89a5-4ccf-beeb-911a756ae70a;Trusted_Connection=True;MultipleActiveResultSets=true",    "IdsSQliteConnection": "Data Source=ids.db;"  },  ...}

使用EF Sqlite 配置

Program.cs文件

//EF SqlServer 配置// Add services to the container.//var connectionString = builder.Configuration.GetConnectionString("DefaultConnection") ?? throw new InvalidOperationException("Connection string "DefaultConnection" not found.");//builder.Services.AddDbContext(options => options.UseSqlServer(connectionString));//EF Sqlite 配置builder.Services.AddDbContext(o => o.UseSqlite(builder.Configuration.GetConnectionString("IdsSQliteConnection")));

重新生成 Migrations 脚本

之前版本是基于localdb,如果不换脚本会出现An error occurred applying migrations, try applying them from the command line错误

删除 Migrations 文件夹

可选: 保留sqlserver的Migrations脚本, 使用 从项目中排除 菜单

创建新迁移并为其生成 SQL 脚本

打开命令行, VS菜单栏=>工具=>Nuget包管理器=>程序包管理器控制台(Packge Manager Console),执行以下命令

cd b15blazorIDSdotnet ef migrations add idsSqlitedotnet ef database update

完整流程

PM> cd b15blazorIDSPM> dotnet ef migrations add idsSqliteBuild started...Build succeeded.Done. To undo this action, use "ef migrations remove"PM> dotnet ef database updateBuild started...Build succeeded.info: Microsoft.EntityFrameworkCore.Database.Command[20101]      Executed DbCommand (7ms) [Parameters=[], CommandType="Text", CommandTimeout="30"]      SELECT COUNT(*) FROM "sqlite_master" WHERE "name" = "__EFMigrationsHistory" AND "type" = "table";...Done.PM> 

重新生成的脚本

重新注册账号

如果运行后出错先跳过,直接导航到 https://localhost:7011/Identity/Account/Register页面注册

EmailPasswordConfirm Password
test@app.com000000000000
user@app.com000000000000

自动生成的数据库文件

本节源码

https://github.com/densen2014/Blazor100/tree/Blazor-教程15-3/b15blazorIDS

源代码

https://github.com/densen2014/Blazor100

https://gitee.com/densen2014/Blazor100 (镜像/非最新版)

关键词: 配置文件 身份验证 过程逻辑