John
Results
1
issues of
John
My Entities with sub documents in MongoDB ``` @Entity() @Unique(["orderNumber"]) export class Orders { @ObjectIdColumn() id: ObjectID; @Column() @Length(4, 10) orderNumber: string; @Column(type => Product) product: Product[]; @Column() @Length(1, 50)...