I need to build an application with ASP.Net Core 2.2 MVC, EF Core and use SQL Server Local db during development.
However, when ready to deploy the app, I'd like to include the dependencies of PostgreSQL 11 into the project and point the project to use PostgreSQL rather than SQL Server .
Is this approach a viable approach that I can easily swap one database to another using EF Core or should I start with PostgreSQL from start?
Thank you in advance.
..Ben