I am using ServiceStack (with the new API) and trying to validate a DTO. Just created some simple code to simulate a validation but it's apparently not firing or at least it's not showing the errors on the response as expected. My code is as follows:
DTO:
[Route("/users/login")]
public class UserLogin
{
public string Email { get; set; }
public string Password { get; set; }
}
The validator itself:
public class UserLoginValidator : AbstractValidator<UserLogin>
{
public UserLoginValidator()
{
RuleSet(ApplyTo.Get, () =>
{
RuleFor(x => x.Email).NotEmpty().WithMessage("Please enter your e-mail.");
RuleFor(x => x.Email).EmailAddress().WithMessage("Invalid e-mail.");
RuleFor(x => x.Password).NotEmpty().WithMessage("Please enter your password.");
});
}
}
Configuring the validation in the host:
Plugins.Add(new ValidationFeature());
container.RegisterValidators(typeof(UserLoginValidator).Assembly);
And the service:
public class LoginService : Service
{
public object Get(UserLogin request)
{
var response = new { SessionId = Guid.NewGuid() };
return response;
}
}
Is there any other config or adjustment that needs to be made to make it work?
Thanks!