Activities of "liangshiwei"

This is because this code, It's logging the current request headers.

Hi,

You can try to add the tag helper using to the _ViewImports.cshtml

@using System.Globalization
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling

Hi,

You need to add the namespace using

@using System.Globalization

my email is shiwei.liang@volosoft.com

Hi,

Could you open a nticket on https://blazorise.com/support

I refunded your ticket here.

Hi,

You need to upgrade your ABP version

Hi,

You can check the document and development Guide

  • https://docs.abp.io/en/abp/latest/Entity-Framework-Core-Migrations
  • https://docs.abp.io/en/commercial/latest/tutorials/book-store/part-1

Hi,

You are missing module dependencies.

Make sure the Volo.Abp.Account.Pro.Public.Application package is installed and the module dependencies are correctly configured.

[DependsOn(
    ......
    typeof(AbpAccountPublicApplicationModule),
    ......
    )]
public class MyProjectNameAuthServerModule : AbpModule

Hi,

Did you configure the AutoEventSelectors

Configure<AbpDistributedEntityEventOptions>(options =>
{
    options.AutoEventSelectors.Add<OrganizationUnit>();
    options.EtoMappings.Add<OrganizationUnit, OrganizationUnitEto>();
});

Hi,

You can try:

options.Events.OnAuthorizationCodeReceived = async receivedContext =>
{
    var userRepository = receivedContext.HttpContext.RequestServices
        .GetRequiredService<IIdentityUserRepository>();

    var users = await userRepository.GetListAsync();
};
Showing 1761 to 1770 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.