nest-mikro-orm-service
Installation
SKILL.md
NestJS Service + MikroORM Guide
Use this skill when creating or modifying NestJS service files that interact with MikroORM.
In MikroORM v6+, persistAndFlush and removeAndFlush are deprecated.
Instead, use method chaining: persist(entity).flush() and remove(entity).flush().
This skill defines the correct CRUD patterns using EntityManager.
Basic Service Structure
Related skills
More from bloominggrace/create-fullstack-service
mikro-orm-entity
Use when creating or modifying MikroORM entity files in the `entities/` folder.
10dto-response
Use when creating or modifying DTO files in the `dto/` folder.
6pr-title
Use when writing Pull Request titles or commit messages to follow the Korean action word convention.
5testing-vitest
Use when writing tests for NestJS + MikroORM with transaction rollback and real DB integration.
4