书栈网 · BookStack 本次搜索耗时 0.023 秒,为您找到 243 个相关结果.
  • Indices

    Indices Column indices Unique indices Indices with multiple columns Spatial Indices Disabling synchronization Indices Column indices Unique indices Indices with multipl...
  • MongoDB

    MongoDB MongoDB支持 定义实体和列 定义subdocuments(embed documents) 使用MongoEntityManager 和MongoRepository createCursor createEntityCursor aggregate bulkWrite count createCollect...
  • 生成迁移

    生成迁移 生成迁移 当你更改数据库架构时,TypeORM 能够自动生成架构更改的迁移文件。 假设你有一个带有title 列的Post 实体,并且已将名称title 更改为name 。则可以运行以下命令: typeorm migration : generate - n PostRefactoring 它将生成一个名为{TIMESTAMP...
  • 与 Relations 结合

    与 Relations 结合 与 Relations 结合 RelationQueryBuilder 是QueryBuilder 的一种允许你使用关系来查询的特殊类型。通过使用你可以在数据库中将实体彼此绑定,而无需加载任何实体,或者可以轻松地加载相关实体。例如: 例如,我们有一个Post 实体,它与Category 有一个多对多的关系,叫做cate...
  • 产品路线图

    产品路线图 关于 1.0.0 版本的说明 如何安装最新的开发版本? 0.3.0 0.2.0 产品路线图 了解我们期望在下一个 TypeORM 版本中获得的惊人新功能。 关于 1.0.0 版本的说明 我们计划在 2018 年秋季的某个时间点发布一个最终稳定的1.0.0 版本。但是,TypeORM 已经在许多大型生产系统中得到了积极的应用。...
  • Usage with JavaScript

    Using with JavaScript app.js entity/Category.js entity/Post.js Using with JavaScript TypeORM can be used not only with TypeScript, but also with JavaScript.Everything is the...
  • 快速开始

    快速开始 快速开始 开始使用 TypeORM 的最快方法是使用其 CLI 命令生成启动项目。只有在 NodeJS 应用程序中使用 TypeORM 时,此操作才有效。如果你使用的是其他平台,请继续执行分步指南 。 首先全局安装 TypeORM: npm install typeorm - g 然后转到要创建新项目的目录并运行命令: typ...
  • 使用 JavaScript

    使用 JavaScript app.js entity/Category.js entity/Post.js 使用 JavaScript TypeORM 不仅可以用于 TypeScript,还可以用于 JavaScript。 一切都是一样的,除了需要省略类型,如果你的平台不支持 ES6 类,那么你需要定义具有所有必需元数据的对象。 app...
  • Active Record vs Data Mapper

    Active Record vs Data Mapper What is the Active Record pattern? What is the Data Mapper pattern? Which one should I choose? Active Record vs Data Mapper What is the Active ...
  • Using ormconfig.json

    Using Configuration Sources Creating a new connection from the configuration file Using ormconfig.json Using ormconfig.js Using environment variables Using ormconfig.yml Us...