Best Reads for Architecture of an App

0
I am getting ready to start my first app in Mendix.  When it is small, I am sure it will not be an issue.  However, when it does grow I am sure it will become very complex.  Any good reads on recommended architecture and design patterns specific to Mendix?  Worth it to me to start that way vs try to fix and re-organize later.
asked
1 answers
0

Well in my opinion in Mendix, starting with a properly defined Domain model can save a lot of hassle. Because changing database relations at a later stage can be quite tricky. Requiring you to build microflows to re-connect entities over newly made associations for example. Which ofcourse can be done quite fast but still can be annoying.

My advice regarding going into theory first and then build. Is just start building. Mendix is fast and you should fail a few times to learn the way the platform works. Making these mistakes will give you knowledge you won't get in a book. Learn how your database is manipulated by your domain model changes. You can easily see what is happening to the data when you use the Console view > Advanced > Start built-in database viewer

As for books you could pick up:
Domain driven design by Eric Evans is not really Mendix specific but can be a good starting point for learning how to translate real life scenarios and software requirements to a domain model. Keep in mind that the book is boring to read.

Regarding Mendix specific reads, honestly there are no real books written yet, if any at all ;] So I guess it is just best to start reading the developer blog posts, and taking a look at the AppStore Modules to see how things have been implemented. 

Other than that learning principles like database normalization can be practical I guess.

answered