Presently we use Visual Studio 2012, EF 5.0 and Npgsql 2.0.12.0.
I'd like to upgrade to Visual Studio 2013 and Npgsql 2.0.14.3 (I'm fine with EF 5.0 for now).
Presently we use the "Update Model" wizard which takes any changes in the schema and feeds them into the edmx file which is viewed in the VS designer. We do this by following the awkward procedure of using DDEX in Npgsql.Provider2 and starting the "experimental" Visual Studio instance.
But this no longer works in Visual Studio 2013 (after updating the generated registry entries). Also it does not work if I change he DbProvider to Npgsql 2.0.14.3 in machine.config.
It would be outstanding if someone could tell me if they got this to work and how.
As a temporary alternative, I'm considering updating the edmx file from the schema by using edmgen.exe. So far, I've been able to generate the .csdl, .ssdl and .mdl files, but I can't find a way to package all of them into a .edmx file. Has anyone tried this approach?