2

Ninject、MVC4、AutoMapper、FluentValidation を接着して使用しています。

ビュー モデルのバリデーターを作成し、ビュー モデル バリデーター内で呼び出す必要がある再利用可能なバリデーターを作成しました。

問題は、フォームを投稿すると、Validate オーバーライドがビュー モデル バリデーターで呼び出されないため、再利用可能なバリデーターも呼び出されないため、最終的に ModelResult が有効になることです... (エンティティの書き込み時に例外が発生する) DBに)...

奇妙なことに、プロパティの 1 つに RuleFor を追加すると、フォームが適切に検証されます。

public class RequiredSourceViewModelValidator : AbstractValidator<RequiredSourceViewModel>
    {
        public RequiredSourceViewModelValidator()
        {
            Mapper.CreateMap<RequiredSourceViewModel, Source>();
        }

        public override FluentValidation.Results.ValidationResult Validate(RequiredSourceViewModel requiredSourceViewModel)
        {
            var validator = new SourceValidator();

            var source = Mapper.Map<RequiredSourceViewModel, Source>(requiredSourceViewModel);

            return validator.Validate(source);
        }
    }


public class SourceValidator : AbstractValidator<Source>
    {
        public SourceValidator()
        {
            RuleFor(s => s.Name)
                .NotEmpty()
                    .WithMessage("Naam mag niet leeg zijn.")
                .Length(1, 100)
                    .WithMessage("Naam mag niet langer zijn dan 100 karakters.");

            RuleFor(s => s.Url)
                .NotEmpty()
                    .WithMessage("Url mag niet leeg zijn.")
                 .Must(BeAValidUrl)
                    .WithMessage("Url is niet geldig.")
                .Length(1, 100)
                    .WithMessage("Url mag niet langer zijn dan 100 karakters.");
        }

        private bool BeAValidUrl(string url)
        {
            if (url == null)
            {
                return true;
            }

            var regex = new Regex(@"^http(s)?://([\w-]+.)+[\w-]+(/[\w- ./?%&=])?$");
            return regex.IsMatch(url);
        }
    }

public class Source : IEntity
    {
        /// <summary>
        /// Gets or sets the primary key of the source.
        /// </summary>
        public int Id { get; set; }

        /// <summary>
        /// Gets or sets the name of the source.
        /// </summary>
        public string Name { get; set; }

        /// <summary>
        /// Gets or sets the url of the source.
        /// </summary>
        public string Url { get; set; }

        /// <summary>
        /// Gets or sets the ordinal of the source.
        /// </summary>
        /// <value>
        /// The ordinal of the source.
        /// </value>
        public int Ordinal { get; set; }

        public int? GameId { get; set; }
    }

ここで何が間違っている可能性がありますか?

4

1 に答える 1

2

間違ったオーバーロードをオーバーライドしています。Validate メソッドを署名でオーバーライドする必要があります。public virtual ValidationResult Validate(ValidationContext<T> context)このメソッドは MVC 検証中に呼び出されるためです。

public override ValidationResult Validate(
      ValidationContext<RequiredSourceViewModel> context)
{
     var validator = new SourceValidator();

     var source = 
         Mapper.Map<RequiredSourceViewModel, Source>(context.InstanceToValidate);

     return validator.Validate(source);
 }

他のオーバーロードは、手動で validate like を呼び出す場合にのみ使用されますvalidator.Validate(object)

于 2013-11-07T20:57:45.347 に答える