Reusable Enumerations

0
Hello Community.  I was curious if anyone has ever reused an enumeration without creating a new module dedicated to reuse.  For instance I have a US State Abbreviation Enum that I would like to use in several apps, without reentering data every time.  Does anyone have a crafty solution?  Maybe I am missing something simple... 
asked
2 answers
3

Hi Ethan,

 

You should be able to right click on the enumeration and "export document to file".  This will result in the download of an mpk file that only includes your enumeration.

Then in your second model, you can right click in any module or folder location in the project explorer and "import document from file" and import your mpk file.

 

Hope this helps!

answered
1

Hi Ethan,

 

I don't think there is an out-of-the-box solution for your use case,

you could create a module with all the common logic and resources you use in multiple projects, updating will be easy and starting a new project too.

 

Let me know what you think about it,

Andrea

answered