- 使用 Entity Manager
使用 Entity Manager
我们刚创建了一张新 photo 并将其保存在数据库中。使用EntityManager
你可以操纵应用中的任何实体。
例如,加载已经保存的实体:
import { createConnection } from "typeorm";
import { Photo } from "./entity/Photo";
createConnection(/*...*/)
.then(async connection => {
/*...*/
let savedPhotos = await connection.manager.find(Photo);
console.log("All photos from the db: ", savedPhotos);
})
.catch(error => console.log(error));
savedPhotos
是一个 Photo 对象数组,其中包含从数据库加载的数据。
了解更多有关 EntityManager 的信息。