No DB access
Generator and database cleanly separated
The generator does not write database state. It creates Code First entities; the Zerocode Engine validates the schema and runs the migration in a controlled flow.
Code First
Entities
Tables are represented as typed models, validations, and relationships in source code.Platform context
Zerocode Engine
Checks changes and creates Up/Down migrations.Data stays protected
Database
Up/Down migrations are applied automatically.check_circle
The generator provides code, not database operations.
verified_user
The engine centrally validates and orchestrates changes.
storage
The database changes only through migrations.