ποΈ Quick Start
First install the module via yarn or npm and do not forget to install the
ποΈ Usage with NestJS
Installation
ποΈ Usage with Vanilla JS
Since MikroORM 3.2, we can use EntitySchema helper to define own entities without decorators, which works also for Vanilla JavaScript.
ποΈ Usage with Babel
When compiling TS via babel, decorators are by default handled different implementation
ποΈ Usage with AdminJS
Installation
ποΈ Using Entity Constructors
Internally, MikroORM never calls entity constructor, so you are free to use it as you wish.
ποΈ Using Multiple Schemas
In MySQL and PostgreSQL it is possible to define your entities in multiple schemas. In MySQL
ποΈ Using native BigInt PKs (MySQL and PostgreSQL)
We can use BigIntType to support bigints. By default, it will represent the value as
ποΈ Using AsyncLocalStorage
Since v5 AsyncLocalStorage is used inside RequestContext helper so this section
ποΈ Creating Custom Driver
If you want to use database that is not currently supported, you can implement your own driver.