반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 기술면접공부
- 알고리즘공부
- 플러터 개발
- 코테준비
- 스프링
- Kafka
- 프로그래머스
- JPA스터디
- 스프링부트공부
- K8S
- 스프링부트
- 자료구조공부
- JPA공부
- 자바공부
- Axon framework
- nestjs공부
- JPA 공부
- querydsl
- 플러터 공부
- 스프링공부
- Flutter
- JPA예제
- 코테공부
- nestjs스터디
- 기술공부
- DDD
- 카프카
- JPA
- 스프링 공부
- nestjs
Archives
- Today
- Total
목록nests 포스팅 (1)
DevBoi
[NestJs] TypeOrm 변경 및 Repository
우선 게시물에 대한 Entity를 아래와 같이 바꿨다. import { BaseEntity, Column, Entity, OneToMany, PrimaryGeneratedColumn, } from 'typeorm'; import { Record } from './record.entity'; @Entity() export class Board extends BaseEntity { @PrimaryGeneratedColumn() uid: number; @Column() title: string; @Column({ unique: true }) userId: string; @Column() nickname: string; @Column() password: string; } board.repository.ts i..
Develop/[NestJs]
2023. 5. 30. 00:17