I read the article https://medium.com/@terence410/working-with-dynamic-table-name-with-typeorm-6a67128b9671
import {Entity, PrimaryColumn, Column} from "typeorm"; export function createEntity(tableName: string) { @Entity({name: tableName}) class EntityClass { public static tableName = tableName; @PrimaryColumn() public name: string = ""; @Column() public value: number = 0; } return EntityClass; }
I have error - Return type of exported function has or is using private name 'EntityClass'. How to set table name dynamic ?
1.4m articles
1.4m replys
5 comments
57.0k users