I am using EdmGen.exe to automatically generate files:
- Database.cs
- Views.cs
- Concept.csdl
- Storage.ssdl
- Mapping.msl
How can I generate an EDMX file from all that, so I can include it into my Visual Studio project?
I'm trying to automate EDMX update in such a way that would not require use of Visual Studio IDE, i.e. completely from command line.
Reasons
My development team needs to start using a huge Oracle database, which was designed long ago, and undergoes small, non-frequent changes. ODP Entity Framework from Oracle seems to be a very good platform for the job, but their Visual Studio Integration Tools comes as a disaster, which we are trying to avoid like a plague. I was asked to script automatic EF model generation completely from command line. Generating a new EDMX from CSDL+SSDL+MSL files is where I got stuck.