Data mapper pattern

Summary

In software engineering, the data mapper pattern is an architectural pattern. It was named by Martin Fowler in his 2003 book Patterns of Enterprise Application Architecture.[1] The interface of an object conforming to this pattern would include functions such as Create, Read, Update, and Delete, that operate on objects that represent domain entity types in a data store.

A Data Mapper is a Data Access Layer that performs bidirectional transfer of data between a persistent data store (often a relational database) and an in-memory data representation (the domain layer). The goal of the pattern is to keep the in-memory representation and the persistent data store independent of each other and the data mapper itself. This is useful when one needs to model and enforce strict business processes on the data in the domain layer that do not map neatly to the persistent data store.[2] The layer is composed of one or more mappers (or Data Access Objects), performing the data transfer. Mapper implementations vary in scope. Generic mappers will handle many different domain entity types; dedicated mappers will handle one or a few.

Implementations edit

Implementations of the concept can be found in various frameworks for many programming environments.

Java/.NET edit

Node.js / TypeScript edit

  • Bookshelf.js library
  • TypeORM library
  • Massive.js library
  • Prisma
  • Objection.js library
  • MikroORM library
  • LDkit Object Graph Mapper (OGM) for RDF data sources

PHP edit

  • Atlas ORM (data mapper, table data gateway, query builder, and PDO wrapper)[3]
  • Doctrine2 Object Relational Mapper (ORM) and the Database Abstraction Layer[4]
  • Cycle ORM (PHP DataMapper ORM and Data Modelling Engine)[5]
  • CakePHP ORM (PHP DataMapper ORM, query builder, and PDO wrapper)

Perl edit

Python edit

Ruby edit

  • DataMapper library (Actually this library implemented the Active Record design pattern, its successor, DataMapper 2 (now ROM) aimed to actually implement the design pattern it was named after)

Elixir edit

  • Ecto persistence framework

See also edit

References edit

  1. ^ Fowler, Martin (2003). Patterns of enterprise application architecture. Addison-Wesley. ISBN 978-0-321-12742-6.
  2. ^ "What's the difference between Active Record and Data Mapper?".
  3. ^ "Atlas ORM – Atlas".
  4. ^ "Doctrine2 and ActiveRecord – Doctrine2". Doctrine2. Archived from the original on 2013-07-21. Retrieved 2013-04-02.
  5. ^ "Cycle ORM – Cycle". GitHub.
  6. ^ "stack overflow – DBIx".