UNPKG

undeexcepturi

Version:

TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.

37 lines (25 loc) 873 B
--- title: Using entity constructors --- Internally, `MikroORM` never calls entity constructor, so you are free to use it as you wish. The constructor will be called only when you instantiate the class yourself via `new` operator, so it is a handy place to require your data when creating new entity. For example following `Book` entity definition will always require to set `title` and `author`, but `publisher` will be optional: ```typescript @Entity() export class Book { @PrimaryKey() _id: ObjectID; @Property() title: string; @ManyToOne() author: Author; @ManyToOne() publisher: Publisher; @ManyToMany({ entity: () => BookTag, inversedBy: 'books' }) tags = new Collection<BookTag>(this); constructor(title: string, author: Author) { this.title = title; this.author = author; } } export interface Book extends IEntity { } ```