diff options
author | Dixit Patel <dixitpatel012@aol.com> | 2017-12-19 11:19:26 +0530 |
---|---|---|
committer | Dixit Patel <dixitpatel012@aol.com> | 2017-12-19 11:19:26 +0530 |
commit | 4e8082f5fadac475dd8abfe592931fbb9be39bef (patch) | |
tree | a884d736761f65e3799cb58209beeb44a3401b03 | |
parent | 2df99f8bc57a39e1565fb6ffeedb87c594334c8b (diff) | |
download | rails-4e8082f5fadac475dd8abfe592931fbb9be39bef.tar.gz rails-4e8082f5fadac475dd8abfe592931fbb9be39bef.tar.bz2 rails-4e8082f5fadac475dd8abfe592931fbb9be39bef.zip |
[ci skip] Added Object Relational Mapping wiki link
-rw-r--r-- | guides/source/active_record_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md index 069a624984..9be9c6c7b7 100644 --- a/guides/source/active_record_basics.md +++ b/guides/source/active_record_basics.md @@ -38,7 +38,7 @@ object on how to write to and read from the database. ### Object Relational Mapping -Object Relational Mapping, commonly referred to as its abbreviation ORM, is +[Object Relational Mapping](https://en.wikipedia.org/wiki/Object-relational_mapping), commonly referred to as its abbreviation ORM, is a technique that connects the rich objects of an application to tables in a relational database management system. Using ORM, the properties and relationships of the objects in an application can be easily stored and |