Dot Computer Science/Concept
2023. 1. 24.
[Architectural pattern] Active Record, Data Mapper 패턴
객체는 '데이터'와 '행동'을 운반한다. 대부분의 데이터는 영구적이며 데이터베이스에 저장해야 한다. Active Record 패턴과 Data Mapper 패턴은 Martin Fowler: Patterns of Enterprise Application Architecture(2003)에서 지어진 이름이다. Active Record An object that wraps a row in a database table or view, encapsulates the database access, and adds domain logic on that data. - Patterns of Enterprise Application Architecture(2003) Active Record 패턴은 도메인 객체에 데이터 액..