Summary
In this chapter, you learned the basics of a Mendix domain model. You learned about entities and how they are data objects to be used in the application to store data for later retrieval in business logic and user interfaces. You also learned about attributes and data types and how different data types can be stored in an entity. The pieces of data themselves are like cells in an Excel table, the columns are attributes, the worksheets are the entities, and each row is an object, or a record of data. Last but not least, you learned about associations and how to relate objects to one another along with learning about a few use cases for relating objects.
Congratulations! You now know how to create entities, how to modify entity properties, including adding attributes, and how to create associations to relate entities to one another. In the following chapters, you will be able to see your app and entities in action by working with pages and microflows to create the app&apos...