knox revised this gist . Go to revision
1 file changed, 17 insertions
TypeORM-readme-24.ts(file created)
@@ -0,0 +1,17 @@ | |||
1 | + | import { Photo } from "./entity/Photo" | |
2 | + | import { AppDataSource } from "./index" | |
3 | + | ||
4 | + | const photo = new Photo() | |
5 | + | photo.name = "Me and Bears" | |
6 | + | photo.description = "I am near polar bears" | |
7 | + | photo.filename = "photo-with-bears.jpg" | |
8 | + | photo.views = 1 | |
9 | + | photo.isPublished = true | |
10 | + | ||
11 | + | const photoRepository = AppDataSource.getRepository(Photo) | |
12 | + | ||
13 | + | await photoRepository.save(photo) | |
14 | + | console.log("Photo has been saved") | |
15 | + | ||
16 | + | const savedPhotos = await photoRepository.find() | |
17 | + | console.log("All photos from the db: ", savedPhotos) |
Newer
Older