TypeORM-readme-22.ts
· 358 B · TypeScript
Eredeti
import { Photo } from "./entity/Photo"
import { AppDataSource } from "./index"
const photo = new Photo()
photo.name = "Me and Bears"
photo.description = "I am near polar bears"
photo.filename = "photo-with-bears.jpg"
photo.views = 1
photo.isPublished = true
await AppDataSource.manager.save(photo)
console.log("Photo has been saved. Photo id is", photo.id)
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 | await AppDataSource.manager.save(photo) |
12 | console.log("Photo has been saved. Photo id is", photo.id) |