We'd like to use model first to generate clean EF models for our application but instead of having the model generate a new db schema we'd like to then manually do a table mapping within the entity to an existing database table or tables. Is there a mechanism for this?
|
feedback
|
|
Not sure if I understand the question, but when you use the wizard to create a new Entity data model, the first step allows you to "Generate from database", just point it to your existing DB. You can then cut out the tables you don't want and/or modify the table mappings manually. There's also the option to pick and choose which tables you want represented in your model in the first place. | |||
|
feedback
|
|
Sure is. This is called Entity Framework Code-First and this is a good tutorial to help getting you started. The idea is that you create some POCO classes seperate to your Repository/Database class. In this Repository/Database class, you define all the relationships between your POCO's. Fortunately, Entity Framework has a number of conventions which you can leverage off, which means you might not need to define every relationship and rule. Eg. If your class is called | |||
|
feedback
|