Active Record Pattern
Everything on SkillVeris tagged Active Record Pattern — collected across the glossary, study notes, blog, and cheat sheets.
2 resources across 1 library
Interview Questions(2)
What is the Active Record Pattern?
Active Record is a design pattern where an object wraps a row of a database table (or view), encapsulating both the data and the persistence logic (save, delet…
Active Record vs Repository Pattern
Active Record bundles data and persistence logic (save, find, delete) directly onto the domain object itself, while the Repository pattern separates persistenc…