Is it possible to generate an Edmx file by creating the collections (schema, conceptual, mappings) and mappings in code and building it up in C#? Note - I've used EdmGen and EdmGen2 which read from a database to create the Edmx. I want to be able to pass the specific items into the metadata without pointing at a database.

Any ideas appreciated. thanks.

link|improve this question

25% accept rate
Take a look at this: huagati.blogspot.com/2010/12/… – KristoferA - Huagati.com Dec 2 '10 at 2:56
feedback

1 Answer

Why not use code first? This is essentially what code first does; it inspects the POCO CLR types you have in your project and creates the corresponding conceptual/storage/mappings by convention. You can also configure those conventions through a fluent code API.

When you spin up a code first DbContext, you can also get to the resulting XML-based EDMX (if you really need it) from within it through a WriteEdmx() method.

If you don't want Code First to generate a database automatically, you can turn off that 'initializer'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.