What problem does it solve?
This skill removes the repetitive, error-prone work of handcrafting end-to-end CRUD endpoints by providing a clear, step-by-step development workflow from entity design to controller and database migration.
Core Features & Use Cases
- Step-by-step workflow: Covers entity creation, DTO design, AutoMapper profiles, service interfaces and implementations, controller patterns, DbContext configuration, and migration generation.
- Reusable templates: Provides code templates for entities, DTOs, services, and controllers to accelerate consistent implementation.
- Enterprise concerns: Advises audit fields, multi-tenant support, activation flags, long ID strategies, validation attributes, and AMIS UI annotations.
- Migration guidance: Includes instructions for creating migrations for MySQL and SQL Server to keep schema and code in sync.
- Use Case: Quickly add an Employee management module that includes list/detail APIs, create/update/delete operations, paged queries, and bulk actions.
Quick Start
Create a new Employee CRUD module by following the seven-step flow: define the entity, add DTOs, configure AutoMapper, implement the service, build the controller, configure the DbContext, and run database migrations.