From 689e0075b78455dcf43d4476ef6a0f3a9813599a Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Tue, 28 Sep 2021 15:16:30 +0800 Subject: [PATCH] Docs --- ARCHITECTURE.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md index 674b3163..09cd26a2 100644 --- a/ARCHITECTURE.md +++ b/ARCHITECTURE.md @@ -1,5 +1,7 @@ # Architecture +> Let's dive under the Sea 🤿 + To understand the architecture of SeaORM, let's discuss what is an ORM. ORM exists to provide abstractions over common operations you would do against a database and hide the implementation details like the actual SQL queries. With a good ORM, you shouldn't bother to look under the API surface. Until you do. I hear you say *'abstraction leaks'*, and yes, it does.