when using ValidationBehavior class cause an error
because of below code
var context = new ValidationContext(request);
Hi, I think you are using FluentApi 9.0 and code that you pasted is from 8.0 there was some changes try using
var context = new ValidationContext<TRequest>(request);
it worked for me, good luck
Most helpful comment
Hi, I think you are using FluentApi 9.0 and code that you pasted is from 8.0 there was some changes try using
var context = new ValidationContext<TRequest>(request);it worked for me, good luck