This project contains an ECO model and generated source code. Initially the model contains a single class with a single string attribute.
The model is edited in a class designer ("Modlr"). The designer is integrated into VisualStudio and is launched by double-clicking on the .ecomdl file in the solution.
The template contains the following files:
ReadMe.html | This file. | ||
Class1.cs | This file is where you add user written code that belongs to Class1. One such file is created for each class in the model. | ||
Class1.eco.cs | The generated code for Class1. One such file is created for each class in the model. This file will be completely regenerated every time you update the generated code for your model. Make sure any user code is written in Class1.cs and not in this class | ||
PluginRoseFileRead.cs | In this file you can add user written code for the package class. The class is abstract, and will never be instantiated, but you can use this class to add static methods for your domain classes- | PluginRoseFileRead.eco.cs | This file contains generated code for the package. It defines which classes belongs to the package, and it also defines properties of the associations in the package. It will be regenerated each time you update the generate code. |
PluginRoseFileRead.ecomdl | Contains the actual model in ecomdl format. |