Activities of "maliming"

hi

The** tenant id** may be changed by code, so the caller is responsible for passing the tenant name.

using(currentTenant.Change(tenantId))
{

}

Answer

hi

You can customize related application services or repositories, and exclude some special entities in query results.

For example, extending the **User **entity to add some properties that represent identity(Super User, Admin, Employee ).

hi

Can you direct share a template project with me? liming.ma@volosoft.com

I will check it locally.

hi

You can override the GetClientIpAddress method to use IPV6 address.

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/WebClientInfo/HttpContextWebClientInfoProvider.cs#L30

Normalize Auditlogs table as it has both TenantId and TenantName fields?

What do you mean? Can you explain?

hi

You also need to depends on the Application Module

Is there a way to sync entities across all tenant databases when IMultitenant is not used

You can switch to Host DB when querying this entity.

using (CurrentTenant.Change(null)) //Host
{
    return await _yourEntityRepository.GetAllAsync();
}

I am getting exceptions

What's the full exceptions logs?

hi

You can try to override the SetEntityActionsAsync method of your Components

EntityActions
    .Get<UserManagement>()
    .AddRange(new EntityAction[]
    {
            new EntityAction
            {
                Text = L["Edit"],
                Visible = (data) => HasUpdatePermission,
                Clicked = async (data) => await OpenEditModalAsync(data.As<IdentityUserDto>()),
                Icon = xxxx
            }
    });

https://github.com/abpframework/abp/blob/20fa13f5696ce8a43580b0c2a6f34c23352650c2/framework/src/Volo.Abp.AspNetCore.Components.Web/Volo/Abp/AspNetCore/Components/Web/Extensibility/EntityActions/EntityAction.cs#L13

https://github.com/abpframework/abp/blob/0fd542a13833fcecf47174f2870bde9e2133a158/framework/src/Volo.Abp.BlazoriseUI/Components/AbpExtensibleDataGrid.razor#L46

hi

You can try to add twice migrations. change nvarchar2 to other data type first. secondly change to CLOB.

hi

Can you guys try again?

Showing 9151 to 9160 of 11531 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 December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.