Activities of "liangshiwei"

Try :

public class OrderDtoValidator:AbstractValidator<SupplierCombinedDto>
    {
        public OrderDtoValidator(IStringLocalizer<MyProjectResource> _localizer)
        {
            RuleFor(x => x.Customer).SetValidator(new CustomerDtoValidator(_localizer));
            RuleFor(x => x.Address).SetValidator(new AddressDtoValidator(_localizer));
            
        }
    }

Currently community is discussing how to configure foreign keys, Please following: https://github.com/abpframework/abp/issues/3959,

Hi, You can add Fluent Validators in the Application project and you can inject IStringLocalizer interface to return localized content .

Is this problem only on azure vm? Do you have this problem when deploying to a local IIS server?

Try use AddSubEvent method to replace the following

await _alertSubEventTypeRepository.InsertAsync(new AlertSubEventType(alert.Id, eventId.Id));

What UI are you using?

Hi,

I think this can help you.

You can inject OAuthService to your services, it has getAccessToken method.

Exampe : https://github.com/abpframework/abp/blob/d598024b77104caf2dd80ea39e1f07ff6fe9a1e5/npm/ng-packs/packages/core/src/lib/interceptors/api.interceptor.ts#L18.

Unable to obtain configuration from: 'https://localhost:44349/.well-known/openid-configuration' No connection could be made because the target machine actively refused it

Please Check if you start the service.

Hi, ABP has integrated RabbitMQ but has not yet completed the documentation. You can see microservice demo document rabbitmq section.

Showing 5871 to 5880 of 5944 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11