The property 'AppUser.ExtraProperties' could not be mapped, because it is of type 'Dictionary
Check #1517 #1414 #927
I resolved for now putting
builder.Ignore<AppUser>();
inside the OnModelCreating method
only (important, only) when I need to use add-migration, update-database
For the rest (when I'm not updating the db ) I use the default code:
builder.Entity<AppUser>(b =>
{
b.ToTable(AbpIdentityDbProperties.DbTablePrefix + "Users"); //Sharing the same table "AbpUsers" with the IdentityUser
b.ConfigureByConvention();
b.ConfigureAbpUser();