1
Answer

MVC5 web api is restfull or not?

Hello...i have created web api using entity framework in MVC5..so can anyone tell me this web api is restfull or not?
Answers (1)
2
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 8y
WebAPI using in MVC5 is RESTful only.
Web API is the great framework for exposing your data and service to different-different devices. Moreover Web API is open source an ideal platform for building REST-ful services over the .NET Framework. Unlike WCF Rest service, it use the full featues of HTTP (like URIs, request/response headers, caching, versioning, various content formats) and you don't need to define any extra config settings for different devices unlike WCF Rest service.
Accepted