ORM mirrors the relational database schema defining content: types and relationships between entities. It is also a connection holder. Additionally, it is a context to create queries executed by the DBMS. What else?
Loading
ORM mirrors the relational database schema defining content: types and relationships between entities. It is also a connection holder. Additionally, it is a context to create queries executed by the DBMS. What else?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sarthak VarshneyPosted May 21, 2024, 3:39 AM
An ORM (Object-Relational Mapping) tool is a framework that provides a mapping between the relational database schema and the application's object model. It mirrors the database schema by defining entity types and relationships, and it acts as a connection holder and a context for creating and executing queries through the DBMS. Additionally, an ORM:
By abstracting the underlying database interactions, an ORM enables developers to focus more on the business logic and less on the intricacies of database management.