1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 12:10:22 +02:00

Fix ORM title (#3682)

Update title. Orms to ORMs
This commit is contained in:
Yerkebulan
2023-03-21 01:39:28 +06:00
committed by GitHub
parent 148bfd8736
commit e0d70950ac

View File

@@ -1,4 +1,4 @@
# Orms # ORMs
ORM stands for Object-Relational Mapping, it is a technique used in enterprise application development to map between the object-oriented programming model and the relational database model. It allows developers to work with objects in their code, while the ORM tool takes care of translating those objects into the appropriate database operations. ORM stands for Object-Relational Mapping, it is a technique used in enterprise application development to map between the object-oriented programming model and the relational database model. It allows developers to work with objects in their code, while the ORM tool takes care of translating those objects into the appropriate database operations.
@@ -6,4 +6,4 @@ ORMs are designed to abstract away the complexity of working with a relational d
Learn more from the following links: Learn more from the following links:
- [Why do you need an ORM?](https://enterprisecraftsmanship.com/posts/do-you-need-an-orm/) - [Why do you need an ORM?](https://enterprisecraftsmanship.com/posts/do-you-need-an-orm/)