We are looking to implement the ABP template at our enterprise. We have existing app DB's that cannot be used with code-first EF. The enterprise will not permit use of code-first method. So we need to use db-first method. If there is someone who has implemented ABP with an existing DB and SPs. Can you please share some code snippets of all the changes you made to the template that enabled db-first use. All responses are greatly appreciated!
Create a .NET Core new project from any of the templates listed
dotnet new mvc -au None -f netcoreapp1.0
EF Core supports existing DB(DB First approach) and the details instructions are here .Basically you will be using the Scaffold-DbContext command to generate all the model classes.
Please note that Scaffold-DbContext does not support StoredProcedures yet and it is in the works .So that you may have to manage that differently