EntityManager {typeorm}

Save data with EntityManager

import {Photo} from './entity/Photo';
import {AppDataSource} from './index';

const photo = new Photo();
await AppDataSource.manager.save(photo);