mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
6.4 KiB
6.4 KiB
EntityManager API
connection- The connection used byEntityManager.
const connection = manager.connection;
queryRunner- The query runner used byEntityManager. Used only in transactional instances of EntityManager.
const queryRunner = manager.queryRunner;
transaction- Provides a transaction where multiple database requests will be executed in a single database transaction. Learn more Transactions.
await manager.transaction(async manager => {
// NOTE: you must perform all database operations using the 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 manager.query(`SELECT * FROM USERS`);
createQueryBuilder- Creates a query builder use to build SQL queries. Learn more about QueryBuilder.
const users = await manager.createQueryBuilder()
.select()
.from(User, "user")
.where("user.name = :name", { name: "John" })
.getMany();
hasId- Checks if given entity has its primary column property defined.
if (manager.hasId(user)) {
// ... do something
}
getId- Gets given entity's primary column property value. If the entity has composite primary keys then the returned value will be an object with names and values of primary columns.
const userId = manager.getId(user); // userId === 1
create- Creates a new instance ofUser. Optionally accepts an object literal with user properties which will be written into newly created user object
const user = manager.create(User); // same as const user = new User();
const user = manager.create(User, {
id: 1,
firstName: "Timber",
lastName: "Saw"
}); // same as const user = new User(); user.firstName = "Timber"; user.lastName = "Saw";
merge- Merges multiple entities into a single entity
const user = new User();
manager.merge(User, user, { firstName: "Timber" }, { lastName: "Saw" }); // same as user.firstName = "Timber"; user.lastName = "Saw";
preload- Creates a new entity from the given plan javascript object. If entity already exist in the database, then it loads it (and everything related to it), replaces all values with the new ones from the given object and returns the new entity. The new entity is actually loaded from the database entity with all properties replaced from the new object.
const partialUser = {
id: 1,
firstName: "Rizzrak",
profile: {
id: 1
}
};
const user = await manager.preload(User, partialUser);
// user will contain all missing data from partialUser with partialUser property values:
// { id: 1, firstName: "Rizzrak", lastName: "Saw", profile: { id: 1, ... } }
save- Saves a given entity or array of entities. If the entity already exist in the database then it's updated. If the entity does not exist in the database yet it's inserted. It saves all given entities in a single transaction (in the case of entity manager is not transactional). Also supports partial updating since all undefined properties are skipped.
await manager.save(user);
await manager.save([
category1,
category2,
category3
]);
update- Partially updates entity by a given update options.
await manager.update(User, { firstName: "Timber" }, { firstName: "Rizzrak" });
// executes UPDATE user SET firstName = Rizzrak WHERE firstName = Timber
updateById- Partially updates entity by a given update options.
await manager.updateById(User, 1, { firstName: "Rizzrak" });
// executes UPDATE user SET firstName = Rizzrak WHERE id = 1
remove- Removes a given entity or array of entities. It removes all given entities in a single transaction (in the case of entity manager is not transactional).
await manager.remove(user);
await manager.remove([
category1,
category2,
category3
]);
removeById- Removes entity by entity id.
await manager.removeById(User, 1);
removeByIds- Removes entity by entity ids.
await manager.removeByIds(User, [1, 2, 3]);
count- Counts entities that match given options. Useful for pagination.
const count = await manager.count(User, { firstName: "Timber" });
find- Finds entities that match given options.
const timbers = await manager.find(User, { firstName: "Timber" });
findAndCount- Finds entities that match given find options. Also counts all entities that match given conditions, but ignores pagination settings (from and take options).
const [timbers, timbersCount] = await manager.findAndCount(User, { firstName: "Timber" });
findByIds- Finds entities by given ids.
const users = await manager.findByIds(User, [1, 2, 3]);
findOne- Finds first entity that matches given find options.
const timber = await manager.findOne(User, { firstName: "Timber" });
findOneById- Finds entity with given id.
const user = await manager.findOne(User, 1);
clear- Clears all the data from the given table (truncates/drops it).
await manager.clear(User);
getRepository- GetsRepositoryto perform operations on a specific entity. Learn more about Repositories.
const userRepository = manager.getRepository(User);
getTreeRepository- GetsTreeRepositoryto perform operations on a specific entity. Learn more about Repositories.
const categoryRepository = manager.getTreeRepository(Category);
getMongoRepository- GetsMongoRepositoryto perform operations on a specific entity. Learn more about MongoDB documentation.
const userRepository = manager.getMongoRepository(User);
getCustomRepository- Gets custom entity repository. Learn more about Custom repositories.
const myUserRepository = manager.getCustomRepository(UserRepository);
release- Releases query runner of a entity manager. Used only when query runner was created and managed manually.
await manager.release();