最後活躍 1729145419

knox 已修改 1729145419. 還原成這個修訂版本

1 file changed, 8 insertions

TypeORM-readme-27.ts(檔案已創建)

@@ -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)
上一頁 下一頁