Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

nestjs - How to set table name in @Entity dynamically?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...