Mendix Heuristics

1
Is there a way within Mendix to get a summary of the complexity of your system. Example: #Entities #Attributes #Microflows #Activities within Microflows and so on?
asked
3 answers
3

You can query the Modeler database to find that information. Download the SQLite Manager add-on for Firefox and execute the following queries on the Modeler .mpr file.

SELECT COUNT(*) FROM MetaObject
SELECT COUNT(*) FROM Attribute
SELECT COUNT(*) FROM MF_Microflow
SELECT COUNT(*) FROM MF_Activity

Note: This works in 2.x but not in 3.x projects.

answered
2

I don't think this is possible the Modeler, but you could use the Object Browser module to get a rough overview.

It creates objects for all your entities, attributes and microflows, which you can easily count in a microflow. (Do note that this includes itself, but you can filter per module if needed).

answered
0

Ok great I will investigate its use, looks like a good lead. Thanks

answered