├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── need-help-issue.md ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── Readme.md ├── _config.yml ├── advanced-association-concepts ├── advanced-many-to-many.md ├── association-scopes.md ├── creating-with-associations.md ├── eager-loading.md └── polymorphic-associations.md ├── core-concepts ├── assocs.md ├── getters-setters-virtuals.md ├── getting-started.md ├── model-basics.md ├── model-instances.md ├── model-querying-basics.md ├── model-querying-finders.md ├── paranoid.md ├── raw-queries.md └── validations-and-constraints.md └── other-topics ├── connection-pool.md ├── constraints-and-circularities.md ├── dialect-specific-things.md ├── extending-data-types.md ├── hooks.md ├── indexes.md ├── legacy.md ├── migrations.md ├── naming-strategies.md ├── optimistic-locking.md ├── other-data-types.md ├── query-interface.md ├── read-replication.md ├── resources.md ├── scopes.md ├── sub-queries.md ├── transactions.md ├── typescript.md ├── upgrade-to-v6.md └── upgrade-to-v7.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/need-help-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/.github/ISSUE_TEMPLATE/need-help-issue.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/Readme.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/_config.yml -------------------------------------------------------------------------------- /advanced-association-concepts/advanced-many-to-many.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/advanced-association-concepts/advanced-many-to-many.md -------------------------------------------------------------------------------- /advanced-association-concepts/association-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/advanced-association-concepts/association-scopes.md -------------------------------------------------------------------------------- /advanced-association-concepts/creating-with-associations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/advanced-association-concepts/creating-with-associations.md -------------------------------------------------------------------------------- /advanced-association-concepts/eager-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/advanced-association-concepts/eager-loading.md -------------------------------------------------------------------------------- /advanced-association-concepts/polymorphic-associations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/advanced-association-concepts/polymorphic-associations.md -------------------------------------------------------------------------------- /core-concepts/assocs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/core-concepts/assocs.md -------------------------------------------------------------------------------- /core-concepts/getters-setters-virtuals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/core-concepts/getters-setters-virtuals.md -------------------------------------------------------------------------------- /core-concepts/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/core-concepts/getting-started.md -------------------------------------------------------------------------------- /core-concepts/model-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/core-concepts/model-basics.md -------------------------------------------------------------------------------- /core-concepts/model-instances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/core-concepts/model-instances.md -------------------------------------------------------------------------------- /core-concepts/model-querying-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/core-concepts/model-querying-basics.md -------------------------------------------------------------------------------- /core-concepts/model-querying-finders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/core-concepts/model-querying-finders.md -------------------------------------------------------------------------------- /core-concepts/paranoid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/core-concepts/paranoid.md -------------------------------------------------------------------------------- /core-concepts/raw-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/core-concepts/raw-queries.md -------------------------------------------------------------------------------- /core-concepts/validations-and-constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/core-concepts/validations-and-constraints.md -------------------------------------------------------------------------------- /other-topics/connection-pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/connection-pool.md -------------------------------------------------------------------------------- /other-topics/constraints-and-circularities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/constraints-and-circularities.md -------------------------------------------------------------------------------- /other-topics/dialect-specific-things.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/dialect-specific-things.md -------------------------------------------------------------------------------- /other-topics/extending-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/extending-data-types.md -------------------------------------------------------------------------------- /other-topics/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/hooks.md -------------------------------------------------------------------------------- /other-topics/indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/indexes.md -------------------------------------------------------------------------------- /other-topics/legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/legacy.md -------------------------------------------------------------------------------- /other-topics/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/migrations.md -------------------------------------------------------------------------------- /other-topics/naming-strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/naming-strategies.md -------------------------------------------------------------------------------- /other-topics/optimistic-locking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/optimistic-locking.md -------------------------------------------------------------------------------- /other-topics/other-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/other-data-types.md -------------------------------------------------------------------------------- /other-topics/query-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/query-interface.md -------------------------------------------------------------------------------- /other-topics/read-replication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/read-replication.md -------------------------------------------------------------------------------- /other-topics/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/resources.md -------------------------------------------------------------------------------- /other-topics/scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/scopes.md -------------------------------------------------------------------------------- /other-topics/sub-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/sub-queries.md -------------------------------------------------------------------------------- /other-topics/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/transactions.md -------------------------------------------------------------------------------- /other-topics/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/typescript.md -------------------------------------------------------------------------------- /other-topics/upgrade-to-v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/upgrade-to-v6.md -------------------------------------------------------------------------------- /other-topics/upgrade-to-v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demopark/sequelize-docs-Zh-CN/HEAD/other-topics/upgrade-to-v7.md --------------------------------------------------------------------------------