I'm fairly new to asp.net and web api, and I need to suggestions how to best design my api.
It has to be a restful web api where I use GET, PUT, POST and DELETE and should be connected to a SQL database and individual user authentication in api.
So do I choose WEB.API or MVC project type in visual studio ? The requests are in JSON format so does that mean I need to return a JQUERY for GET requests ? And for talking to SQL database I have to use Entity Framework?
Any suggestions, tips, examples would be greatly appreciated.
Go to the complete details ...