书栈网 · BookStack 本次搜索耗时 0.011 秒,为您找到 243 个相关结果.
  • 添加表列

    添加表列 添加表列 要添加数据库列,你只需要将要生成的实体属性加上@Column 装饰器。 import { Entity , Column } from "typeorm" ; @Entity () export class Photo { @Column () id : num...
  • 什么是 Repository

    什么是 Repository 什么是 Repository Repository 就像EntityManager 一样,但其操作仅限于具体实体。 你可以通过getRepository(Entity) ,Connection#getRepository 或EntityManager#getRepository 访问存储库。 例如: import ...
  • 使用 Entity Manager

    使用 Entity Manager 使用 Entity Manager 我们刚创建了一张新 photo 并将其保存在数据库中。使用EntityManager 你可以操纵应用中的任何实体。 例如,加载已经保存的实体: import { createConnection } from "typeorm" ; import { ...
  • 保存一对一的关系

    保存一对一的关系 保存一对一的关系 现在来创建一个 photo,它的元信息将它们互相连接起来。 import { createConnection } from "typeorm" ; import { Photo } from "./entity/Photo" ; import { PhotoM...
  • Step-by-Step Guide

    Step-by-Step Guide Step-by-Step Guide What are you expecting from ORM? First of all, you are expecting it will create database tables for you and find / insert / update / delet...
  • Adding table columns

    Adding table columns Adding table columns To add database columns, you simply need to decorate an entity’s properties you want to make into a columnwith a @Column decorator. ...
  • Asynchronous providers

    Asynchronous providers Injection Example Asynchronous providers At times, the application start should be delayed until one or more asynchronous tasks are completed. For exa...
  • 列数据类型

    列数据类型 列数据类型 接下来,让我们修复数据类型。默认情况下,字符串被映射到一个 varchar(255)类型(取决于数据库类型)。数字被映射到一个类似整数类型(取决于数据库类型)。但是我们不希望所有的列都是有限的 varchars 或整数,让我们修改下代码以设置想要的数据类型: import { Entity , Column , ...
  • Save a one-to-one relation

    Save a one-to-one relation Save a one-to-one relation Now let’s save a photo, its metadata and attach them to each other. import { createConnection } from "typeorm" ; ...
  • TiDB 支持的第三方工具

    TiDB 支持的第三方工具 支持等级 Driver ORM GUI TiDB 支持的第三方工具 注意 本文档仅列举了常见的 TiDB 支持的第三方工具 ,未被列入其中的第三方工具并非代表不支持,但 PingCAP 无法了解其是否使用到 TiDB 不支持的特性,从而无法保证兼容性。 TiDB 高度兼容 MySQL 协议 ,使得大部分适配 ...