Activities of "liangshiwei"

This is because the Identity service comes from AuthServer, and the AuthServer does not reference the Domain project.

Hi,

Could you share a test project with me? I will check it. shiwei.liang@volosoft.com thanks.

Hi,

Where am I missing configuration? I'm working on Module Template.

Have you added the module dependencies?

[Dependof(typeof(DMSDomainModule))]

You need to configure the AutoEventSelectors:

https://docs.abp.io/en/abp/latest/Distributed-Event-Bus#event-transfer-object

Hi.

You need to configure the AbpAccountPublic service, for example:

Hi,

Yes please, and the your profile picture related code. shiwei.liang@volosfot.com

Hi,

I can confirm this problem, we will fixed in the next patch version. your ticket was refunded.

This is a temporary solution:

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(AbpEfCoreNavigationHelper))]
public class MyAbpEfCoreNavigationHelper : AbpEfCoreNavigationHelper
{
    public override void ChangeTracker_Tracked(ChangeTracker changeTracker, object? sender, EntityTrackedEventArgs e)
    {
        
    }

    public override void ChangeTracker_StateChanged(ChangeTracker changeTracker, object? sender, EntityStateChangedEventArgs e)
    {
        
    }
}
Configure<AbpEntityChangeOptions>(options =>
{
    options.PublishEntityUpdatedEventWhenNavigationChanges = false;
});

Hi,

But the profile picture request was redirected to the host API not the auth server.

Could you share the code?

How many tenants can we have into the same database ? Is there a limit ? Is there any suggestion regarding performance?

No limit, you should evaluate the size of your data, if it is large you should use a separate database

Do you know if I have something special to manage tenant properly or just inserted data in the new database with tenantId that belongs to the old database will work ?

Yes, just insert the TenantId

Do you think both solutions works ? I prefer the 2 solutions :)

I prefer solution 2, too.

I also notice that there are 2 tables (GdprInfo, GdprRequests) in the tenant database that does nt have tenantId, what are these tables for ? They are empty

You can check this https://commercial.abp.io/modules/Volo.Gdpr

https://github.com/abpframework/abp/milestone/95 Not yet.

Showing 2121 to 2130 of 6693 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