getConnection() - Gets connection which was created by using createConnection method.
import {getConnection} from "typeorm";
const connection = getConnection();
// if you have named connection you can specify its name:
const secondaryConnection = getConnection("secondary-connection");
getEntityManager() - Gets EntityManager from connection.
Connection name can be specified to indicate what connection's entity manager should be taken.
import {getEntityManager} from "typeorm";
const manager = getEntityManager();
// you can use manager methods now
const secondaryManager = getEntityManager("secondary-connection");
// you can use secondary connection manager methods
getRepository() - Gets Repository for given entity from connection.
Connection name can be specified to indicate what connection's entity manager should be taken.
import {getRepository} from "typeorm";
const userRepository = getRepository(User);
// you can use repository methods now
const blogRepository = getRepository(Blog, "secondary-connection");
// you can use secondary connection repository methods
getTreeRepository() - Gets TreeRepository for given entity from connection.
Connection name can be specified to indicate what connection's entity manager should be taken.
import {getTreeRepository} from "typeorm";
const userRepository = getTreeRepository(User);
// you can use repository methods now
const blogRepository = getTreeRepository(Blog, "secondary-connection");
// you can use secondary connection repository methods
getMongoRepository() - Gets MongoRepository for given entity from connection.
Connection name can be specified to indicate what connection's entity manager should be taken.
import {getMongoRepository} from "typeorm";
const userRepository = getMongoRepository(User);
// you can use repository methods now
const blogRepository = getMongoRepository(Blog, "secondary-connection");
// you can use secondary connection repository methods
Connection API
name - Connection name. If you created nameless connection then it's equal to "default".
You use this name when you work with multiple connections and call getConnection(connectionName: string)
const connectionName: string = connection.name;
options - Connection options used to create this connection.
const connectionOptions: ConnectionOptions = connection.options;
// you can cast connectionOptions to MysqlConnectionOptions
// or any other xxxConnectionOptions depending on the database driver you use
isConnected - Indicates if a real connection to the database is established.
driver - Underlying database driver used in this connection.
const driver: Driver = connection.driver;
// you can cast connectionOptions to MysqlDriver
// or any other xxxDriver depending on the database driver you use
manager - EntityManager used to work with connection entities.
const manager: EntityManager = connection.manager;
// you can call manager methods, for example find:
const user = await manager.findOne(1);
mongoManager - MongoEntityManager used to work with connection entities in mongodb connections.
For more information about MongoEntityManager see MongoDB documentation.
const manager: MongoEntityManager = connection.mongoManager;
// you can call manager or mongodb-manager specific methods, for example find:
const user = await manager.findOne(1);
connect - Performs connection to the database.
When you use createConnection it automatically calls connect and you don't need to call it yourself.
await connection.connect();
close - Closes connection with the database.
Usually, you call this method when your application is shutting down.
await connection.close();
synchronize - Synchronizes database schema. When synchronize: true is set in connection options it calls this method.
Usually, you call this method when your application is starting.
await connection.synchronize();
dropDatabase - Drops the database and all its data.
Be careful with this method on production since this method will erase all your database tables and their data.
Can be used only after connection to the database is established.
await connection.dropDatabase();
runMigrations - Runs all pending migrations.
await connection.runMigrations();
undoLastMigration - Reverts last executed migration.
await connection.undoLastMigration();
hasMetadata - Checks if metadata for a given entity is registered.
const repository = connection.getRepository(User);
// now you can call repository methods, for example find:
const users = await repository.findOne(1);
getTreeRepository - Gets TreeRepository of the given entity.
You can also specify a table name and if repository for given table is found it will be returned.
const repository = connection.getTreeRepository(Category);
// now you can call tree repository methods, for example findTrees:
const categories = await repository.findTrees();
getMongoRepository - Gets MongoRepository of the given entity.
This repository is used for entities in MongoDB connection.
const userRepository = connection.getCustomRepository(UserRepository);
// now you can call methods inside your custom repository - UserRepository class
const crazyUsers = await userRepository.findCrazyUsers();
transaction - Provides a single transaction where multiple database requests will be executed in a single database transaction.
await connection.transaction(async manager => {
// NOTE: you must perform all database operations using given manager instance
// its a special instance of EntityManager working with this transaction
// and don't forget to await things here
});
query - Executes a raw SQL query.
const rawData = await connection.query(`SELECT * FROM USERS`);
createQueryBuilder - Creates a query builder, which can be used to build queries.
const queryRunner = connection.createQueryRunner();
// you can use its methods only after you call connect
// which performs real database connection
await queryRunner.connect();
// .. now you can work with query runner and call its methods
// very important - don't forget to release query runner once you finished working with it
await queryRunner.release();
ConnectionManager API
create - Creates a new connection and register it in the manager.