KoU_warch
KoU_warch

Reputation: 2150

Is there any ASP MVC 3 framework for a restful api?

I've been doing some digging in the web but all i find is either incomplete guides to do it by yourself or guides for the first version of MVC.

Is there any framework for getting a RESTful API or not?

And if no, is there anyway to add a global solution for all models (extending the model or routing of MVC it self), because what i've read involves adding the REST logic to each model/ controller of the application (Which don't look like a good solution to adopt REST)

Upvotes: 0

Views: 748

Answers (1)

timothyclifford
timothyclifford

Reputation: 6959

WCF Web API for MVC3

Add WebAPI support to MVC3 application

Both of these should give you an idea of what's involved.

Are you able to start using MVC4?

Upvotes: 1

Related Questions