You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicclassWebRequestValidator:AbstractValidator<WebRequest>{publicWebRequestValidator(){RuleFor(x =>x.BigIntegerField).InclusiveBetween(newBigInteger(0),newBigInteger(12345678900));// <-- this is just example}}
Now no restrictions are displayed in swagger for this field of type BigInteger.
Could you add displaying minimum and maximum restrictions for fields of type BigInteger, like for other numeric types (int, long, double, decimal)?
The text was updated successfully, but these errors were encountered:
Hello!
I have the next type:
and fluent validation for it:
Now no restrictions are displayed in swagger for this field of type BigInteger.
Could you add displaying minimum and maximum restrictions for fields of type BigInteger, like for other numeric types (int, long, double, decimal)?
The text was updated successfully, but these errors were encountered: