Create whole object within entity.

0
Within my domain model, I have a 'Patient' entity. I have attributes such as 'Name', 'SSN', etc. How do I create a database that has all this information where I can assign something to each attribute and create a patient. I know you can create a micro flow with "create object," but that's not necessarily what I'm looking for. I want an entire database and I need to add new actual names to each entity
asked
1 answers
1

Creating an Entity in your domain model automatically creates a table in your database, for which you don't need to perform any other actions to set up. The 'create object' action adds an entry to the table, and the attributes can be changed in screens or by the 'change object' action.

In this lecture the basics are explained: https://gettingstarted.mendixcloud.com/link/module/133/lecture/1113

Hope this helps! 

answered