Synchronize database

0
Good evening everyone. how mendix synchronizes the entities when i configure the default database to connect for example in mysql? does it use something like hibernate?
asked
1 answers
1

Mendix has it's own persistancy layer.

  1. It will use the characteristics/possiblities of the the database as much as possible.
  2. It will add and remove attributes when the domain is changed
  3. It will convert values as much as possible when attributes are changed.
  4. It will optimize the SQL statement used internally per database
  5. You can change assocation types when data allows it.
  6. Migration tooling is available https://docs.mendix.com/howto/data-models/migrating-your-mendix-database
answered