使用 Query Builder 删除

你可以使用QueryBuilder创建DELETE查询。 例如:

import { getConnection } from "typeorm";

await getConnection()
  .createQueryBuilder()
  .delete()
  .from(User)
  .where("id = :id", { id: 1 })
  .execute();

就性能而言,这是删除数据库中的实体的最有效方法。

Copyright © runoops.com 备案号:闽ICP备19010956号-1 all right reserved,powered by RunoopsFile Modify: 2024-09-11 09:40:30

results matching ""

    No results matching ""