1234567891011121314151617181920212223242526272829 |
- using FluentValidation;
- namespace AipGateway.API.Domain.Common.Extensions
- {
- public static class FluentValidationExtensions
- {
- public static IRuleBuilderOptions<T, TProperty> ValidateBoolProperty<T, TProperty>(this IRuleBuilder<T, TProperty> ruleBuilder)
- {
- return ruleBuilder.NotNull().WithMessage($"{nameof(TProperty)} Permission is required");
- }
- public static IRuleBuilderOptions<T, TProperty> ValidateNotNull<T, TProperty>(this IRuleBuilder<T, TProperty> ruleBuilder)
- {
- return ruleBuilder.NotNull().WithMessage($"{nameof(TProperty)} is required");
- }
- public static IRuleBuilderOptions<T, TProperty> ValidateProperty<T, TProperty>(this IRuleBuilder<T, TProperty> ruleBuilder)
- {
- return ruleBuilder.NotEmpty().NotNull().WithMessage($"{nameof(TProperty)} is required");
- }
- public static IRuleBuilderOptions<T, TProperty> ValidateEnumProperty<T, TProperty>(this IRuleBuilder<T, TProperty> ruleBuilder)
- {
- return ruleBuilder.ValidateProperty().IsInEnum().WithMessage($"{nameof(TProperty)} is invalid");
- }
- public static IRuleBuilderOptions<T, TProperty> ValidateNotNullEnum<T, TProperty>(this IRuleBuilder<T, TProperty> ruleBuilder)
- {
- return ruleBuilder.ValidateNotNull().IsInEnum().WithMessage($"{nameof(TProperty)} is invalid");
- }
- }
- }
|