From 3fad96aa10c6966ceed7d130d53b50d270aed84b Mon Sep 17 00:00:00 2001 From: Odyseya <115072020+Odyseya@users.noreply.github.com> Date: Tue, 11 Oct 2022 23:32:25 +0200 Subject: [PATCH] add Go orms introduction (#2363) * add Go orms introduction * Update content/roadmaps/109-golang/content/103-go-orms/readme.md * Update content/roadmaps/109-golang/content/103-go-orms/readme.md Co-authored-by: Kamran Ahmed --- content/roadmaps/109-golang/content/103-go-orms/readme.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/109-golang/content/103-go-orms/readme.md b/content/roadmaps/109-golang/content/103-go-orms/readme.md index d7489920d..d0c90b88e 100644 --- a/content/roadmaps/109-golang/content/103-go-orms/readme.md +++ b/content/roadmaps/109-golang/content/103-go-orms/readme.md @@ -1 +1,5 @@ -# Go orms \ No newline at end of file +# ORMs + +Object–relational mapping (ORM, O/RM, and O/R mapping tool) in computer science is a programming technique for converting data between type systems using object-oriented programming languages. This creates, in effect, a "virtual object database", hence a layer of abstraction, that can be used from within the programming language. + +Most common ORM library in Go is [GORM](https://gorm.io/). \ No newline at end of file