How can I call a SQL Stored Procedure using EntityFramework 7 and Asp.Net 5
For last couple of days I am searching for some tutorials about how to call a Stored Procedure from inside a Web API controller method using EntityFramework 7 . All tutorials I came through are showing it the other way round, i.e. Code First approach. But I already have a database in place and I need to use it to build a Web API . Various business logic are already written as Stored Procedures and Views and I have to consume those from my Web API. Question 1: Is this at all possible to carry on with Database First approach with EF7 and consume database objects like above? I installed