Skip to content

Commit fe2a485

Browse files
committed
[Blog] Edit
1 parent f6a44ac commit fe2a485

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

Blog/blog/2024-05-28-getting-started-with-loco-seaorm.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author_image_url: https://avatars.githubusercontent.com/u/30400950?v=4
88
tags: [news]
99
---
1010

11-
In this tutorial, we would create an REST notepad backend starting from scratch and adding a new REST endpoint to handle file uploads.
11+
In this tutorial, we would create a REST notepad backend starting from scratch and adding a new REST endpoint to handle file uploads.
1212

1313
The full source code can be found [here](https://github.com/SeaQL/sea-orm/tree/master/examples/loco_starter). The documentation of the REST API is available [here](https://documenter.getpostman.com/view/34752358/2sA3QmEF5q).
1414

@@ -601,7 +601,7 @@ Remember to enable `multipart` in `axum` and add `tokio-util` dependency.
601601
602602
## SQL Server Support
603603
604-
The [SQL Server for SeaORM](https://www.sea-ql.org/SeaORM-X/) will first be offered as a closed beta to our partners. If you are interested, please join our [waiting list](https://forms.office.com/r/1MuRPJmYBR).
604+
[SQL Server for SeaORM](https://www.sea-ql.org/SeaORM-X/) is now available as a closed beta. If you are interested, please signup [here](https://forms.office.com/r/1MuRPJmYBR).
605605
606606
Migrating from `sea-orm` to `sea-orm-x` is straightforward with two simple steps. First, update the existing `sea-orm` dependency to `sea-orm-x` and enable the `sqlz-mssql` feature. Note that you might need to patch SeaORM dependency for the upstream dependencies.
607607
@@ -615,7 +615,7 @@ sea-orm = { path = "<SEA_ORM_X_ROOT>/sea-orm-x" }
615615
sea-orm-migration = { path = "<SEA_ORM_X_ROOT>/sea-orm-x/sea-orm-migration" }
616616
```
617617
618-
Then, remember to update the connection string for you MSSQL database connection.
618+
Second, update the connection string to connect to the MSSQL database.
619619
620620
```sh
621621
# If the schema is `dbo`, simply write:
@@ -628,16 +628,15 @@ mssql://username:password@host/database?currentSchema=my_schema
628628
mssql://username:password@host/database?trustCertificate=true
629629
```
630630
631-
SeaORM X has full Loco support and integrate seamlessly with other frameworks:
631+
SeaORM X has full Loco support and integrate seamlessly with all web frameworks:
632632
633-
> If you are interested to checkout the integration examples, please join our [waiting list](https://forms.office.com/r/1MuRPJmYBR)
633+
+ Actix
634+
+ Axum
635+
+ Async GraphQL
636+
+ jsonrpsee
637+
+ Loco
638+
+ Poem
639+
+ Salvo
640+
+ Tonic
634641
635-
+ [Actix Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/actix_example)
636-
+ [Axum Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/axum_example)
637-
+ [GraphQL Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/graphql_example)
638-
+ [jsonrpsee Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/jsonrpsee_example)
639-
+ [Loco Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/loco_example)
640-
+ [Loco REST Starter Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/loco_starter)
641-
+ [Poem Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/poem_example)
642-
+ [Salvo Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/salvo_example)
643-
+ [Tonic Example](https://github.com/SeaQL/sea-orm-x/tree/main/sea-orm-x/examples/tonic_example)
642+
Happy Coding!

0 commit comments

Comments
 (0)