UPDATE: I understand that I can go from 2 to 3 by creating a DB and then creating entity model from the framework. I am looking for a way to create the entity model without creating a DB.
1) I am trying to use entity framework 5.
2) I have my poco classes.
3) I want to generate an entity model.
How do I go from 2 to 3?
I can create an entity model, but my only options are to create from an existing db or an empty model. I don't have an existing db, so I select an empty model.
I then get a great looking tool to create entities. However, it is empty and I want to create entities that will match up with my poco classes.
How do I take my existing poco classes and transform them into the entity model?