Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

nestjs - What does putting a parameter in @Entity() do?

@Entity('user')
export class UserEntity {  
    @PrimaryGeneratedColumn('uuid') id: string;  
    @Column({ 
        type: 'varchar', 
        nullable: false, 
        unique: true 
    }) 
    username: string;
    @Column({ 
        type: 'varchar', 
        nullable: false 
    }) 
    password: string;  
}

What purpose does the 'user' in @Entity() have? In the controller, we put parameters inside the @Get() or similar methods to specify route...but no such thing happens in the Entity file.

This is where I got the code from: https://www.codemag.com/Article/2001081/Nest.js-Step-by-Step-Part-3-Users-and-Authentication

question from:https://stackoverflow.com/questions/65844279/what-does-putting-a-parameter-in-entity-do

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

1 Answer

0 votes
by (71.8m points)

This parameter overrides the default table name used for that entity. In your case the table would be called "user". If you didn't pass this parameter the table name would have been "userEntity" or "user_entity", I'm not quite sure.


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