Activities of "liangshiwei"

Hi,

Unfortunately, you have to add it. The CMS module is kind of special, Its permissions need to check the global features. And AdministrationService is responsible for permission checking, the global feature must be enabled for it.

The Volo.CmsKit.Pro.Domain.Shared is a shared project, it's okay to share between different services.

Hi,

You can try add the Volo.CmsKit.Pro.Domain.Shared package to XTC.BaaSo.AdministrationService.Domain.Shared project and configure the global features.

Hi

I will check it.

Hi,

I mean the user edit page in the ABP application

Hi,

Please move GlobalFeatureManager.Instance.Modules.Cms... to ProductServiceGlobalFeatureConfigurator class

Answer

Hi,

No, current abstraction does not support to set job retrycount.

You can check this: https://github.com/abpframework/abp/issues/4174

Answer

Hi,

You can create users using a separate transaction. for example:

foreach(var item in list)
{
    using (var uow = UnitOfWorkManager.Begin(requiresNew: true, isTransactional:true))
    {
        try
        {
            var user = new IdentityUser(
                GuidGenerator.Create(),
                <username>, /// item.Username
                <email>, // item.email
                CurrentTenant.Id
            );
    
            user.SetPhoneNumber(<phoneNumber>, false);
            
            await UserManager.CreateAsync(user, <password>)).CheckErrors();
    
            await uow.CompleteAsync();
        }
        catch (Exception e)
        {
            await uow.RollbackAsync();
            throw e;
        }
    }
}

Answer

Hi,

This actually has nothing to do with ABP framework.

You can choose your favorite Excel library to upload Excel files, for example: https://github.com/mini-software/MiniExcel

Hi,

Yes

Hi,

Could you share a simple project to reproduce the problem with me? shiwei.liang@volosoft.com I will check it. thanks.

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