My problem is that I\'ve been following ASP.net MVC/API tutorials I have a working controller in the MVC side of things. For instance this works fine and returns my data in
One thing that seems to be missing is your "AcceptVerbs" annotation.
[AcceptVerbs(HttpVerbs.Get)] public async Task MethodName() { return json(model, JSonRequestBehavior.AllowGet); }