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
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();
};