From 6cfbf808f0b0d87f224769e3c844cc8dfc5bd32b Mon Sep 17 00:00:00 2001 From: Sergejs Visockis Date: Thu, 28 Mar 2024 22:05:55 +0100 Subject: [PATCH] update README.md (#79) --- active-record/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/active-record/README.md b/active-record/README.md index d806e00b5b6b..6100a3de6810 100644 --- a/active-record/README.md +++ b/active-record/README.md @@ -10,8 +10,6 @@ tag: An Active Record pattern provides a data persistence mechanism having that one encapsulated within the domain model itself. -While DAO pattern strictly adheres to the separation of concerns principle an Active Record encapsulates -all the data persistence and business logic within the domain model itself. The following pattern might be particularly useful when it's required to quickly draft data access implementation with as less effort as possible.