-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
63 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,50 @@ | ||
|
||
# Summary | ||
|
||
* [Introduction](introduction.md) | ||
* [Installation](installation.md) | ||
* Core Concepts | ||
* [Schema Definition](coreconcepts/schema-definition.md) | ||
* [Associations](coreconcepts/associations.md) | ||
* [Migrations](coreconcepts/migrations.md) | ||
* CQL API | ||
* [Insert](cql/Insert.md) | ||
* [PrimaryKeyType](cql/PrimaryKeyType.md) | ||
* [ForeignKey](cql/ForeignKey.md) | ||
* [Record](cql/Record.md) | ||
* [Schema](cql/Schema.md) | ||
* [Column](cql/Column.md) | ||
* [Table](cql/Table.md) | ||
* [Migration](cql/Migration.md) | ||
* [Repository](cql/Repository.md) | ||
* [Migrator](cql/Migrator.md) | ||
* [Error](cql/Error.md) | ||
* [Query](cql/Query.md) | ||
* [Delete](cql/Delete.md) | ||
* [Update](cql/update.md) | ||
* [AlterTable](cql/AlterTable.md) | ||
* [PrimaryKey](cql/PrimaryKey.md) | ||
* [Adapter](cql/Adapter.md) | ||
* [Relations](cql/Relations.md) | ||
* Guides | ||
* [Getting Started](guides/getting-started.md) | ||
* [Complex Queries](guides/complex-queries.md) | ||
* [Transaction Management](guides/transaction-management.md) | ||
* [Handling Migrations](guides/handling-migrations.md) | ||
* [Troubleshooting](guides/troubleshooting.md) | ||
* [FAQs](guides/faqs.md) | ||
- [Introduction](introduction.md) | ||
- [Installation](installation.md) | ||
- Core Concepts | ||
- [Schema Definition](coreconcepts/schemas.md) | ||
- [Inisitalizing Schema](coreconcepts/initializing-the-database.md) | ||
- [Altering Schema](coreconcepts/altering-the-schema.md) | ||
- [Migrations](coreconcepts/migrations.md) | ||
- CRUD Operations | ||
- [Creating Records](coreconcepts/crud-operations/creating-records.md) | ||
- [Reading Records](coreconcepts/crud-operations/reading-records.md) | ||
- [Updating Records](coreconcepts/crud-operations/updating-records.md) | ||
- [Deleting Records](coreconcepts/crud-operations/deleting-records.md) | ||
- Patterns | ||
- [Active Record](coreconcepts/patterns/active-record.md) | ||
- [Entity Framework](coreconcepts/patterns/entity-framework.md) | ||
- [Repository](coreconcepts/patterns/repository.md) | ||
- CQL API | ||
- [Insert](cql/Insert.md) | ||
- [PrimaryKeyType](cql/PrimaryKeyType.md) | ||
- [ForeignKey](cql/ForeignKey.md) | ||
- [Record](cql/Record.md) | ||
- [Schema](cql/Schema.md) | ||
- [Column](cql/Column.md) | ||
- [Table](cql/Table.md) | ||
- [Migration](cql/Migration.md) | ||
- [Repository](cql/Repository.md) | ||
- [Migrator](cql/Migrator.md) | ||
- [Error](cql/Error.md) | ||
- [Query](cql/Query.md) | ||
- [Delete](cql/Delete.md) | ||
- [Update](cql/update.md) | ||
- [AlterTable](cql/AlterTable.md) | ||
- [PrimaryKey](cql/PrimaryKey.md) | ||
- [Adapter](cql/Adapter.md) | ||
- [Relations](cql/Relations.md) | ||
- [Belongs To](cql/relations/BelongsTo.md) | ||
- [Has One](cql/relations/HasOne.md) | ||
- [Has Many](cql/relations/HasMany.md) | ||
- [Many To Many](cql/relations/ManyToMany.md) | ||
- [Collection](cql/relations/Collection.md) | ||
- [Many Collection](cql/relations/ManyCollection.md) | ||
- Guides | ||
- [Getting Started](guides/getting-started.md) | ||
- [Complex Queries](guides/complex-queries.md) | ||
- [Transaction Management](guides/transaction-management.md) | ||
- [Handling Migrations](guides/handling-migrations.md) | ||
- [Troubleshooting](guides/troubleshooting.md) | ||
- [FAQs](guides/faqs.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters