From 7e832e9a694c635201f86f22f46c50cd10659d79 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Thu, 10 Jun 2021 02:15:44 +0800 Subject: [PATCH] Diesel --- Diesel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Diesel.md b/Diesel.md index d0033119..0d24edbc 100644 --- a/Diesel.md +++ b/Diesel.md @@ -12,7 +12,7 @@ First off, perhaps the number one requested feature, async Rust support. While u Under the hood, SeaORM together with SQLx offers you a pure Rust technology stack. While Diesel is tied to native drivers. Each side has their pros and cons, so it's up to your preference. -SeaORM has an open core design. If you don't like the idea of ORM, you'll definitely still want to use SeaQuery, the underlying query builder. It is light weight and can be easily integrated into any project. The SeaQuery API is also available to you when using SeaORM, so you receive the benefits of high level abstraction while still having the power of a flexible query builder when you need it. +SeaORM has a modular design. If you don't like the idea of ORM, you'll definitely still want to use SeaQuery, the underlying query builder. It is light weight and can be easily integrated into any project. The SeaQuery API is also available to you when using SeaORM, so you receive the benefits of high level abstraction while still having the power of a flexible query builder when you need it. SeaSchema is our schema discovery library, but it is not sealed inside SeaORM. So you can reuse our data structures for developing libraries inter-operating with SeaORM.