Integer boolean array

0
Ik moet een aantal integer of Boolean array(s) opslaan/raadplegen. Is daar een voorbeeld van?
asked
1 answers
1

This can't be done in Mendix: there are only lists of objects. You will have to create an entity with a boolean (or integer) attribute create an object for each boolean or (integer) value you want to store in your array.

You should add an integer attribute to the entity as well, to denote the position in the array to help you retrieve these objects from the database or sort them.

answered