namespace BackOffice.BFF.Application.RoleCQ.Queries.GetRole; public class GetRoleQueryValidator : AbstractValidator { public GetRoleQueryValidator() { RuleFor(model => model.Id) .NotNull(); } public Func>> ValidateValue => async (model, propertyName) => { var result = await ValidateAsync(ValidationContext.CreateWithOptions((GetRoleQuery)model, x => x.IncludeProperties(propertyName))); if (result.IsValid) return Array.Empty(); return result.Errors.Select(e => e.ErrorMessage); }; }