I’m trying Fastendpoints for organize endpoints in a .net8 web-api project. I have configured validators as follows
Issue is when the app starts in local environment it shows the following fail message. But the validation fires successfully. Anyone has idea about the shown fail message. Does it have any effect.
I also tried to use fluent validation and configure upon startup like this. But then the error is missing but validation didn’t fire.
public class Validator : AbstractValidator<MalaysiaForecastRequest>
public class DemographicDataValidator : AbstractValidator<DemographicData>
Anyone have an idea whether
- Reason for fail message when using fastendpoint validator.
- Is it possible to use fluent validation with the combination of fastendpoints.
Thanks in advance.