Activities of "liangshiwei"

Answer

Hi,

You can remove spacing via CSS style

The process cannot access the file 'C:\myapp\aspnet-core\src\myapp.Blazor\bin\Debug\net8.0\myapp.Application.Contracts.dll' because it is being used by another process. [C:\myapp\aspnet-core\src\myapp.Blazor\myapp.Blazor.csproj]

I guess the application myapp.Blazor is running, please stop it first and try again.

Hi,

Sorry for that, we will check and fix it.

Hi,

You need to override the login code.

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(LoginModel))]
public class MyLoginModel : OpenIddictSupportedLoginModel
{
    public MyLoginModel(IAuthenticationSchemeProvider schemeProvider, IOptions<AbpAccountOptions> accountOptions, IAbpRecaptchaValidatorFactory recaptchaValidatorFactory, IAccountExternalProviderAppService accountExternalProviderAppService, ICurrentPrincipalAccessor currentPrincipalAccessor, IOptions<IdentityOptions> identityOptions, IOptionsSnapshot<reCAPTCHAOptions> reCaptchaOptions, AbpOpenIddictRequestHelper openIddictRequestHelper) : base(schemeProvider, accountOptions, recaptchaValidatorFactory, accountExternalProviderAppService, currentPrincipalAccessor, identityOptions, reCaptchaOptions, openIddictRequestHelper)
    {
    }

    protected async override Task<List<ExternalProviderModel>> GetExternalProviders()
    {
        var providers = await base.GetExternalProviders();

        var request = await OpenIddictRequestHelper.GetFromReturnUrlAsync(ReturnUrl);
        if (request.ClientId = "xxx" || CurrentTenant.Id = "xxxx")
        {
            providers.RemoveAll(x => x.AuthenticationScheme == "Azure");
        }

        return providers;
    }
}

Because this is a new feature in 8.2.0

You can upgrade your project version to 8.2.0-rc.5

Considering that ABP may sort all fields in UI, you can create indexes for all fields.

Here is the document(8.2 version):

https://docs.abp.io/en/abp/8.2/MongoDB#configure-indexes-and-createcollectionoptions-for-a-collection

Add appsettings.secrets.json to TestBase project

Hi,

Sorry, I did not receive the email

Hi,

Please configure it in the ClientServiceHttpApiHostModule class

HI,

Try

await _distributedEventBus.PublishAsync(exceptionLogEto, onUnitOfWorkComplete: false);

The transaction was rolled back, so no events were published

See https://docs.abp.io/en/abp/latest/Distributed-Event-Bus#transaction-and-exception-handling

Showing 1821 to 1830 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.