FluentValidation client-side validation

后端 未结 3 1452
终归单人心
终归单人心 2020-12-30 04:32

I tried to use GreaterThen validator and it looks like it doesn\'t support client-side validation. Is there a list of FluentValidation validators which support client-side v

3条回答
  •  一整个雨季
    2020-12-30 05:00

    The list of validators supported on the client is on this page and are as follows:

    • NotNull/NotEmpty (required)
    • Matches (regex)
    • InclusiveBetween (range)
    • CreditCard
    • Email
    • EqualTo (cross-property equality comparison)
    • Length

提交回复
热议问题