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 ?
question from:https://stackoverflow.com/questions/65901126/how-to-set-table-name-in-entity-dynamically