Activities of "liangshiwei"

Hi:

https://github.com/abpframework/abp/milestones

You can check our milestones

Hi,

It will be available in 7.4

Hi,

I couldn't reproduce the problem, could you share the full steps to reproduce? thanks.

Hi,

You can try this:

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IAccountAppService)]
public class MyAccountAppService : AccountAppService
{
    public MyAccountAppService(IdentityUserManager userManager, IAccountEmailer accountEmailer, IAccountPhoneService phoneService, IIdentityRoleRepository roleRepository, IdentitySecurityLogManager identitySecurityLogManager, IBlobContainer<AccountProfilePictureContainer> accountProfilePictureContainer, ISettingManager settingManager, IOptions<IdentityOptions> identityOptions, IIdentitySecurityLogRepository securityLogRepository, IApplicationInfoAccessor applicationInfoAccessor) : base(userManager, accountEmailer, phoneService, roleRepository, identitySecurityLogManager, accountProfilePictureContainer, settingManager, identityOptions, securityLogRepository, applicationInfoAccessor)
    {
    }

    public override async Task<IdentityUserDto> RegisterAsync(RegisterDto input)
    {
        await CheckSelfRegistrationAsync();

        if (await UseCaptchaOnRegistration())
        {
            var reCaptchaValidator = await RecaptchaValidatorFactory.CreateAsync();
            await reCaptchaValidator.ValidateAsync(input.CaptchaResponse);
        }

        await IdentityOptions.SetAsync();

        var user = new IdentityUser(GuidGenerator.Create(), input.UserName, input.EmailAddress, CurrentTenant.Id);

        input.MapExtraPropertiesTo(user);

        (await UserManager.CreateAsync(user, input.Password)).CheckErrors();
        (await UserManager.AddDefaultRolesAsync(user)).CheckErrors();

        return ObjectMapper.Map<IdentityUser, IdentityUserDto>(user);
    }
}

Hi,

I will check it

Answer

Hi,

Ok, He is not a member of the abp team, so I can't make him answer your question.

I think this is the document he mentioned: https://docs.abp.io/api-docs/abp/3.0/api/index.html

I also see this is version 3. Are there plans to release documentation for higher versions?

I'll ask the team about the latest version of the API documentation and let you know.

Answer

our trainer mentioned that there used to be a class and method documentation

May I ask the name of the trainer?I will ask him to answer your question.

Answer

Hi,

Are you talking about this? https://docs.abp.io/api-docs/abp/3.0/api/index.html

Hi,

I can't reproduce the problem, could you provide the full steps to reproduce? thanks.

I can't build the solution, please use a new project to reproduce the problem, thanks.

Showing 3641 to 3650 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.