I would like to use the .edmx designer in Visual Studio 2015 for managing objects on postgresql 12. I've installed:
EntityFramework 6.2.0
EntityFramework6.Npgsql 3.2.1.1 that in turn installs:
- Npgsql 4.0.7.0
So i thought I was ok, instead when clicking on "Project, Add New Item, ADO.NET Entity Data Model", then "EF Designer from Database" it doesn't propose any postgresql connection.
I've read about a Visual Studio integration find it here, in which they say that is compatible with VS 2015.
But in the Visual Studio Marketplace, find it here, VS 2015 is not listed in the compatible products.
I tried to install it and i got the following error:
10/21/2019 3:07:48 PM - VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products.
at VSIXInstaller.App.InitializeInstall(Boolean isRepairSupported) at VSIXInstaller.App.InitializeInstall() at System.Threading.Tasks.Task.InnerInvoke() at System.Threading.Tasks.Task.Execute()
So it's quite clear to me that such tools introduce a whole layer of creepy dependencies in the projects beyond the already complex dependencies graph of the project's components. I would like to avoid this extension, but is it possible to still use the designer while writing connection stings manually? And how? Can I use code-first approach at least ?
