From 4decb603fdbbe2422c63b5677b19598cb28143ab Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Fri, 5 Apr 2024 22:05:59 +0100 Subject: [PATCH] Edit --- SeaORM-X/docs/01-index.md | 10 ++-------- SeaORM-X/docs/01-introduction/01-orm.md | 4 +++- .../01-introduction/{04-tutorial.md => 02-tutorial.md} | 2 +- .../docs/05-basic-crud/{03-insert.md => 01-insert.md} | 0 4 files changed, 6 insertions(+), 10 deletions(-) rename SeaORM-X/docs/01-introduction/{04-tutorial.md => 02-tutorial.md} (90%) rename SeaORM-X/docs/05-basic-crud/{03-insert.md => 01-insert.md} (100%) diff --git a/SeaORM-X/docs/01-index.md b/SeaORM-X/docs/01-index.md index cc7471d937..ff55208d74 100644 --- a/SeaORM-X/docs/01-index.md +++ b/SeaORM-X/docs/01-index.md @@ -6,7 +6,7 @@ 1.1. [What is SeaORM X](01-introduction/01-orm.md) - 1.4. [Tutorial & Examples](01-introduction/04-tutorial.md) + 1.2. [Tutorial & Examples](01-introduction/02-tutorial.md) ## Basics @@ -30,10 +30,4 @@ 5. Basic CRUD - 5.3 [INSERT: Model & ActiveModel, insert many](05-basic-crud/03-insert.md) - -## Advanced Topics - -11. Internal Design - - 11.4 [Architecture](11-internal-design/04-architecture.md) + 5.1 [INSERT: Model & ActiveModel, insert many](05-basic-crud/01-insert.md) diff --git a/SeaORM-X/docs/01-introduction/01-orm.md b/SeaORM-X/docs/01-introduction/01-orm.md index 89945e95a4..8bb6420f38 100644 --- a/SeaORM-X/docs/01-introduction/01-orm.md +++ b/SeaORM-X/docs/01-introduction/01-orm.md @@ -10,6 +10,8 @@ SeaSchema X extends SeaSchema, adding the support of MSSQL schema definition, di SeaORM X extends SeaORM, integrating SeaQuery X and SeaSchema X and offering complete support for MSSQL, and of course, working around the nuances of MSSQL. We aim to offer an experience as good as SeaORM by porting all test cases and examples, complemented by MSSQL specific documentation. -In the future, we'd also like to bring Seaography to the table, allowing developers to easily create admin dashboards. +All libraries are supersets of their open-source versions, so it's possible to interop say MySQL and MSSQL in the same codebase. + +In the future, we'd also like to include Seaography in the bundle, allowing developers to easily create admin dashboards. SeaORM X is now in closed-beta, and will be based on SeaORM `1.0`, so the API surface will be stable and supported long term. We offer an Evaluation License and a Production License with two support tiers. If you are interested, please email us for pricing information. \ No newline at end of file diff --git a/SeaORM-X/docs/01-introduction/04-tutorial.md b/SeaORM-X/docs/01-introduction/02-tutorial.md similarity index 90% rename from SeaORM-X/docs/01-introduction/04-tutorial.md rename to SeaORM-X/docs/01-introduction/02-tutorial.md index b015ebc5cf..4fec729a61 100644 --- a/SeaORM-X/docs/01-introduction/04-tutorial.md +++ b/SeaORM-X/docs/01-introduction/02-tutorial.md @@ -4,7 +4,7 @@ If you prefer a step-by-step tutorial on how to use SeaORM, you can check out ou You can also check out [SeaORM Cookbook](https://www.sea-ql.org/sea-orm-cookbook/) for some frequently asked questions and recommended practices of using SeaORM. -If you are so eager and want something grab-and-go, SeaQL maintains a set of official examples contributed by the community (we welcome more!): +If you are so eager and want something grab-and-go, SeaQL maintains a set of official examples: + [Actix Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/mssql_actix_example) + [Axum Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/mssql_axum_example) diff --git a/SeaORM-X/docs/05-basic-crud/03-insert.md b/SeaORM-X/docs/05-basic-crud/01-insert.md similarity index 100% rename from SeaORM-X/docs/05-basic-crud/03-insert.md rename to SeaORM-X/docs/05-basic-crud/01-insert.md