ORM is Object-Relational Mapping.

Changing Object-Relational Model to Object-Relational Mapping (the correct meaning of ORM).
Other popular ORMs: Hibernate, Entity Framework Core, Dapper.
This commit is contained in:
Eduardo Viñuela 2022-02-22 12:20:46 -06:00 committed by GitHub
parent 69225497b8
commit 231063fd07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,12 @@
---
title: Introduction to the Data Model and ORM
summary: Introduction to creating and querying a database records through the ORM (object-relational model)
summary: Introduction to creating and querying a database records through the ORM (object-relational mapping)
icon: database
---
# Introduction to the Data Model and ORM
Silverstripe uses an [object-relational model](http://en.wikipedia.org/wiki/Object-relational_model) to represent its
Silverstripe uses an [object-relational mapping](http://en.wikipedia.org/wiki/Object-relational_mapping) to represent its
information.
* Each database table maps to a PHP class.