Dernière activité 1729145419

knox a révisé ce gist 1729145419. Aller à la révision

1 file changed, 8 insertions

TypeORM-readme-27.ts(fichier créé)

@@ -0,0 +1,8 @@
1 + import { Photo } from "./entity/Photo"
2 + import { AppDataSource } from "./index"
3 +
4 + const photoRepository = AppDataSource.getRepository(Photo)
5 + const photoToRemove = await photoRepository.findOneBy({
6 + id: 1,
7 + })
8 + await photoRepository.remove(photoToRemove)
Plus récent Plus ancien