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.