DataAnnotations and FluentValidation not working in MVC 2 project
I have edited the original question since the same error is occurring the difference being the implementation, I have now added Ninject to the mix. I have created a class for the validation rules public class AlbumValidator : AbstractValidator<Album> { public AlbumValidator() { RuleFor(a => a.Title).NotEmpty(); } } I ...