From 231063fd07e3cb09d5451b6858f5ce5ee785eb80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Vi=C3=B1uela?= <51720412+eduardovinuela@users.noreply.github.com> Date: Tue, 22 Feb 2022 12:20:46 -0600 Subject: [PATCH] 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. --- docs/en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md b/docs/en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md index 4e315eeabac..7e1aa27ed6f 100644 --- a/docs/en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md +++ b/docs/en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md @@ -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.