I'm building an ASP.NET MVC application and still consider myself new to ASP.NET MVC. I come from a WCF REST background, so I initially set up a number of services that my jQuery-based client would call via RESTful AJAX requests. As I learned more about ASP.NET MVC, I discovered the JsonResult ActionResult type, and I can just add these methods to a controller and it behaves just like my WCF RESTful services.
So my question is, is there a limitation to JsonResults that I'm not seeing that WCF RESTful services provides? So far, I haven't seen it and am wondering if this completely eliminates my need for WCF REST functionality.
Thanks in advance!