ORMs
ORM (Object-Relational Mapping) allows | developers to interact | with databases
ORM (Object-Relational Mapping) cho phép | các nhà phát triển tương tác | với cơ sở dữ liệu
using object-oriented concepts.
bằng các khái niệm hướng đối tượng.
Maps database tables to classes | and rows to objects, | eliminating raw SQL queries.
Ánh xạ các bảng cơ sở dữ liệu thành lớp | và hàng thành đối tượng, | loại bỏ các truy vấn SQL thô.
Simplifies data manipulation | and improves maintainability.
Đơn giản hóa việc thao tác dữ liệu | và cải thiện khả năng bảo trì.
Popular ORMs: Hibernate (Java), | Entity Framework (.NET), | SQLAlchemy (Python).
Các ORM phổ biến: Hibernate (Java), | Entity Framework (.NET), | SQLAlchemy (Python).
Resources
- What is an ORM, how does it work, and how should I use one? (article)
- What is an ORM (article)
- Why Use an ORM? (video)
References
- https://roadmap.sh/backend (Node: [label])