mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
docs: fix README link to docs (#5065)
This commit is contained in:
parent
b141a91f66
commit
014c7c352e
@ -22,13 +22,13 @@
|
||||
|
||||
TypeORM 是一个 [ORM](https://en.wikipedia.org/wiki/Object-relational_mapping) 框架,它可以运行在 NodeJS、Browser、Cordova、PhoneGap、Ionic、React Native、Expo 和 Electron 平台上,可以与 TypeScript 和 JavaScript (ES5,ES6,ES7,ES8)一起使用。 它的目标是始终支持最新的 JavaScript 特性并提供额外的特性以帮助你开发任何使用数据库的(不管是只有几张表的小型应用还是拥有多数据库的大型企业应用)应用程序。
|
||||
|
||||
不同于现有的所有其他 JavaScript ORM 框架,TypeORM 支持 Active Record 和 Data Mapper 模式,这意味着你可以以最高效的方式编写高质量的、松耦合的、可扩展的、可维护的应用程序。
|
||||
不同于现有的所有其他 JavaScript ORM 框架,TypeORM 支持 [Active Record](./docs/active-record-data-mapper.md#what-is-the-active-record-pattern) 和 [Data Mapper](./docs/active-record-data-mapper.md#what-is-the-data-mapper-pattern) 模式,这意味着你可以以最高效的方式编写高质量的、松耦合的、可扩展的、可维护的应用程序。
|
||||
|
||||
TypeORM 参考了很多其他优秀 ORM 的实现, 比如 [Hibernate](http://hibernate.org/orm/), [Doctrine](http://www.doctrine-project.org/) 和 [Entity Framework](https://www.asp.net/entity-framework)。
|
||||
|
||||
TypeORM 的一些特性:
|
||||
|
||||
- 支持 DataMapper 和 ActiveRecord (随你选择)
|
||||
- 同时支持 [DataMapper](./docs/active-record-data-mapper.md#what-is-the-data-mapper-pattern) 和 [ActiveRecord](./docs/active-record-data-mapper.md#what-is-the-active-record-pattern) (随你选择)
|
||||
- 实体和列
|
||||
- 数据库特性列类型
|
||||
- 实体管理
|
||||
|
||||
@ -31,7 +31,7 @@ that help you to develop any kind of application that uses databases - from
|
||||
small applications with a few tables to large scale enterprise applications
|
||||
with multiple databases.
|
||||
|
||||
TypeORM supports both [Active Record](docs/active-record-data-mapper.md#what-is-the-active-record-pattern) and [Data Mapper](docs/active-record-data-mapper.md#what-is-the-data-mapper-pattern) patterns,
|
||||
TypeORM supports both [Active Record](./docs/active-record-data-mapper.md#what-is-the-active-record-pattern) and [Data Mapper](./docs/active-record-data-mapper.md#what-is-the-data-mapper-pattern) patterns,
|
||||
unlike all other JavaScript ORMs currently in existence,
|
||||
which means you can write high quality, loosely coupled, scalable,
|
||||
maintainable applications the most productive way.
|
||||
@ -41,7 +41,7 @@ TypeORM is highly influenced by other ORMs, such as [Hibernate](http://hibernate
|
||||
|
||||
Some TypeORM features:
|
||||
|
||||
* supports both [DataMapper](active-record-data-mapper.md#what-is-the-data-mapper-pattern) and [ActiveRecord](active-record-data-mapper.md#what-is-the-active-record-pattern) (your choice)
|
||||
* supports both [DataMapper](./docs/active-record-data-mapper.md#what-is-the-data-mapper-pattern) and [ActiveRecord](./docs/active-record-data-mapper.md#what-is-the-active-record-pattern) (your choice)
|
||||
* entities and columns
|
||||
* database-specific column types
|
||||
* entity manager
|
||||
@ -214,7 +214,7 @@ await timber.remove();
|
||||
|
||||
* for **NativeScript**, **react-native** and **Cordova**
|
||||
|
||||
Check [documentation of supported platforms](docs/supported-platforms.md)
|
||||
Check [documentation of supported platforms](./docs/supported-platforms.md)
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user