abp快速入门#2

abp快速入门#2

更改生成表的schema

自动生成的IdentityServer相关的表名比较长,可以修改成独立的schema为idsrv.

  1. 找到Rat.BookStore.EntityFrameworkCore.DbMigrations项目的文件BookStoreMigrationsDbContext.cs中修改代码。
            // 更改成独立schema
            builder.ConfigureIdentityServer(options=> {
                options.Schema = "idsrv";
                options.TablePrefix = string.Empty;
            });
  1. 在Windows的命令行执行,生成migration并更新到数据库。
dotnet ef migrations add idsrv 
-s D:\my-project\Rat.BookStore\aspnet-core\src\Rat.BookStore.DbMigrator\
Rat.BookStore.DbMigrator.csproj 
-p D:\my-project\Rat.BookStore\aspnet-core\src\Rat.BookStore.EntityFrameworkCore.DbMigrations\
Rat.BookStore.EntityFrameworkCore.DbMigrations.csproj
dotnet ef database uddate
-s D:\my-project\Rat.BookStore\aspnet-core\src\Rat.BookStore.DbMigrator\
Rat.BookStore.DbMigrator.csproj 
-p D:\my-project\Rat.BookStore\aspnet-core\src\Rat.BookStore.EntityFrameworkCore.DbMigrations\
Rat.BookStore.EntityFrameworkCore.DbMigrations.csproj

数据库表修改前与修改后的对比:
修改前截图修改后截图
3. 更改后会导致Rat.BookStore.IdentityServer项目失败,经查找abp源码,暴力修复方案,在项目启动Startup强制更改参数(或许有更优雅的方案暂时没找到)。

public void ConfigureServices(IServiceCollection services)
{
   AbpIdentityServerDbProperties.DbSchema = "idsrv";
   AbpIdentityServerDbProperties.DbTablePrefix = string.Empty;
           
   services.AddApplication<BookStoreIdentityServerModule>();
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值