yarn add @zhuowenli/egg-typeorm mysql
// {app_root}/config/plugin.ts
const plugin: EggPlugin = {
typeorm: {
enable: true,
package: '@zhuowenli/egg-typeorm',
},
};
// {app_root}/config/config.default.ts
config.typeorm = {
type: 'mysql',
host: 'localhost',
port: 3306,
username: 'root',
password: '123456',
database: 'test',
synchronize: true,
logging: false,
entities: ['app/entity/**/*.ts'],
migrations: ['app/migration/**/*.ts'],
subscribers: ['app/subscriber/**/*.ts'],
cli: {
entitiesDir: 'app/entity',
migrationsDir: 'app/migration',
subscribersDir: 'app/subscriber',
},
};
├── controller
│ └── home.ts
├── entity
├── Post.ts
└── User.ts
// app/entity/User.ts
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm'
@Entity()
export class User {
@PrimaryGeneratedColumn()
id: number
@Column()
name: string
}
// in controller
export default class UserController extends Controller {
public async index() {
const { ctx } = this;
ctx.body = await ctx.repo.User.find();
}
}
// in controller
export default class UserController extends Controller {
public async index() {
const { ctx } = this;
const firstUser = await ctx.repo.User.createQueryBuilder('user')
.where('user.id = :id', { id: 1 })
.getOne();
ctx.body = firstUser;
}
}