Validate your data in the client (for performance) and server (for security) from a single source of truth and no extra steps, just:
- Define your schema (fields and rules).
- Call 'ValidateForm' with your data and your schema.
Why Fluent Validation?
- Single source of truth (your schema)
- No extra work for client & server validations - just pass your schema!
- Declarative constraints - clearly define your rules.
- Part of your code - does not use the database, so no data migrations are needed.
- Easy customization of your error messages.
Fixed an issue when text fields were too large
Deprecated unused options in the Schema_Create action
Internal improvements