Activities of "EngincanV"

You can use the Table Splitting approach. Please see the Table Splitting documentation of EF Core and then just update your entity configuration as below:

builder.Entity<AppUser>(b =>
        {
            b.ToTable(AbpIdentityDbProperties.DbTablePrefix + "Users"); //Sharing the same table "AbpUsers" with the IdentityUser

            b.ConfigureByConvention();
            b.ConfigureAbpUser();

            b.HasOne<IdentityUser>().WithOne().HasForeignKey<AppUser>(x => x.Id); //add this line
        });

Same with https://github.com/abpframework/abp/issues/8950#issuecomment-1001880208

It's nice to hear that :)

Sure, you can send your project to engin.veske@volosoft.com.

are u checking?

I've checked and write you an email back, can you check and apply it?

Hi, I'll try to reproduce the problem and write you back asap.

Sure, you can send your project to engin.veske@volosoft.com.

Does your .HttpApi.Host and .IdentityServer projects are running? It seems it couldn't get a response from localhost:44358 and localhost:63079

Hi, please see this answer.

Hi, I've just created an app-pro template with Blazor UI but I could not reproduce the problem. The problem might be related to you could have closed the terminal before the abp install-libs command was completed. So, please delete the yarn.lock file (under the .HttpApi.Host project) and re-run the abp install-libs command.

Hi, I'll try to reproduce the problem and write you back asap.

Excellent, thanks for the support @EngincanV

You're welcome :)

Showing 1121 to 1130 of 1371 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 04, 2025, 06:41