0
antonis created
I am trying to change the Abp prefix from table names. I am using the following method
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.ChangeAbpTablePrefix<Tenant, Role, User>("");
}
It successfully renames all tables except
AbpPersistedGrants
1 Answer(s)
-
0
Hi @antonis
Could you share your ABP version ? You can remove the prefix using the code below temporarily.
modelBuilder.Entity<PersistedGrantEntity>().ToTable("PersistedGrants");