I have stored procedures inside my database. I would like to create web api methods, which will return json string for each stored procedure result and accept parameters of stored procedures from my web client(jQuery, extjs).
As i know it could be done with entity framework automatically - it snifs database and creates controller methods for each procedure.
Is there some example(could be also book) how to do that - since I can't find any? Most of them are with code first or linq, tables only, repository pattern and similar...
Thank you,
Simon