Reputation: 500
I have a class diagram created by Enterprise Architect (.eap project file). Is there a way that I can generate the ERD(entity relationship diagram),C# classes or the DDL(SQL Data definition) query from it?
Upvotes: 0
Views: 2070
Reputation: 13701
Yes you can generate C# classes and DDL from your model.
See the section Generate Code in the help file to know more about code generation.
The section Generate DDL explains how to do DDL generation.
Going from a class model to a database model (ERD) is a bit more complicated. In order to do so you'll need an MDA transformation. Read more about it in the section Model Transformation
Upvotes: 1