I was wondering if is it possible to create a Web API without Entity Framework.
This should be strange but supposing to have this table
T_BOOKS:
BookId int
BookTitle nvarchar(50)
and a stored procedure that returns me something like that
select BookId, BookTitle
from T_BOOKS
Then I add a column to both the table and the stored procedure
T_BOOKS:
BookId int
BookTitle nvarchar(50)
BookAuthor nvarchar(50)
select BookId, BookTitle, BookAuthor
from T_BOOKS
Why should I change the controller and redeploy entire WebAPI ?
Any answer is appreciated.
Many thanks!