0
Spospisil created
- ABP Framework version: v5.0.1
- UI type:MVC
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): MVC/Tiered
Has the ability to remove the table prefix from all the tables been removed with version 5.0.x? For example, previously with ABP 4.4.4 I could override the prefix with the command
builder.ConfigurePermissionManagement(options => { options.TablePrefix = string.Empty; });
but with 5.0.x it appears as if module specific 'ModelBuilderConfigurationOptions' have been removed and I can no longer pass into the method the prefix I desire.
Please advise.
4 Answer(s)
-
0
AbpPermissionManagementDbProperties.DbTablePrefix = "NewPrefix"
Can you try this code?
-
0
-
0
-
0
Hi,
My issue was I had previously generated migrations that had the prefix in there before I added the logic to remove the prefixes. I had not deleted the migrations and it was just reapplying them.
Thanks for the help.