I need to define som (transient) fields & properties in Eco classes that aren't supported by the Eco framework.
Q: How do I define a field/attribute as "non-Eco" in an Eco class?
Example:
Brep[] SolidHousing; // An array of CAD faces & boxes
//Rolf
You can add transient attributs in dem Modlr but they are also treated by MDriven as attributes and MDriven does not allow arrays, dictionaries or lists in the Modlr.
What you can do is: Simply add them in the .cs file of your class. Don't touch the .eco.cs class but you can do anything you want in the .cs file. Please keep in mind that the class has a generated constructor and that you can add logic in the constructor by implementing the ObjectCreated() partial method. When you take a look into the code in the .eco.cs file, you will understand.
Hint: Normally it's no good idea to add an own constructor without using the Modlr for it.
Already generated constructor: