diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-04-03 13:19:20 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-04-03 13:19:20 +0200 |
commit | d131c9a4f6f49b8c7378fedd651d81f423dec193 (patch) | |
tree | 0196e6c72bfa4f87a931054f584e20bed3b74815 | |
parent | ab547e7b4368588719396a6f6b0528681c3a6cd4 (diff) | |
download | rails-d131c9a4f6f49b8c7378fedd651d81f423dec193.tar.gz rails-d131c9a4f6f49b8c7378fedd651d81f423dec193.tar.bz2 rails-d131c9a4f6f49b8c7378fedd651d81f423dec193.zip |
link the Active Record pattern to the EAA Catalog
-rw-r--r-- | guides/source/active_record_basics.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md index f5afa77c42..7a5e1bf4eb 100644 --- a/guides/source/active_record_basics.md +++ b/guides/source/active_record_basics.md @@ -27,10 +27,11 @@ Object Relational Mapping system. ### The Active Record Pattern -Active Record was described by Martin Fowler in his book _Patterns of Enterprise -Application Architecture_. In Active Record, objects carry both persistent data -and behavior which operates on that data. Active Record takes the opinion that -ensuring data access logic is part of the object will educate users of that +[Active Record was described by Martin Fowler](http://www.martinfowler.com/eaaCatalog/activeRecord.html) +in his book _Patterns of Enterprise Application Architecture_. In +Active Record, objects carry both persistent data and behavior which +operates on that data. Active Record takes the opinion that ensuring +data access logic is part of the object will educate users of that object on how to write to and read from the database. ### Object Relational Mapping |