Code Monkey home page Code Monkey logo

Comments (4)

jodosha avatar jodosha commented on May 26, 2024

@sidonath Thanks for asking these questions.

Collections are mapping low level details, they shouldn't be used directly. Repositories and queries are the boundary for the persistence mechanisms. In other words, your code shouldn't be aware of collections.

What's the goal that you want to accomplish? Please point to a concrete example, and I'll be happy to help in the specific case.

The reason for keeping those attributes assignment separated is the intrinsic nature of a mapper. The simplified examples and your greenfield project are using one entity per one database table (collection). This architecture shines on more complex cases. Think of a Customer entity that is composed by complex data such as Address, CreditCard. A mapper is able to persist/fetch those entities from/to separated database tables, in a way that is transparent to the domain model.

Martin Fowler in his EAA book admits that Data Mapper is only recommended for complex cases, Active Record (the pattern), should be preferred otherwise.

For this reason I'm thinking to an "auto mapper" mode for Model: it will be able to automatically map the schema and generate attributes for entities. It will be recommended for prototypes and for early stages of an app, and should be disabled when it "hurts".

from model.

sidonath avatar sidonath commented on May 26, 2024

What's the goal that you want to accomplish? Please point to a concrete example, and I'll be happy to help in the specific case.

I'm trying to extract the boilerplate for setting up the Lotus::Model objects. Basically, playing with the job that Lotus gem is going to do. Take a look at this file, which is a modified version of lotus.rb from your gist:

https://github.com/sidonath/room-reservation/blob/3177a349f585d168b058fe5c6013454dfcaad876/lotus.rb#L39

Think of a Customer entity that is composed by complex data such as Address, CreditCard. A mapper is able to persist/fetch those entities from/to separated database tables, in a way that is transparent to the domain model.

I haven't considered that, but it sounds awesome! I guess that's planned for future, since the current code — as far as I can see — assumes that the relationship between a collection and an entity is 1-to-1?

For this reason I'm thinking to an "auto mapper" mode for Model: it will be able to automatically map the schema and generate attributes for entities. It will be recommended for prototypes and for early stages of an app, and should be disabled when it "hurts".

Great! I was pretty certain it was planned 😄

from model.

jodosha avatar jodosha commented on May 26, 2024

@sidonath Have a look at this commit ec395d8 it introduces a getter for the collections.

Yes, in a future version, Model will be able to handle those complex persistence cases.

from model.

sidonath avatar sidonath commented on May 26, 2024

@jodosha awesome! Thanks for clearing up everything 😄

from model.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.