I'd like to adopt ASP.NET MVC Model binding for a rich client application. I have the following controller action:
public ActionResult CreateUser(User profile)
Previously with HTML forms, as long as the form HTML input names match the names of the properties of User, model binding happens automatically.
I understand model binding also looks in route data and the querystring for values to bind to an entity, but when I put querystring values that match the properties, I get a 404.
I can't get this ActionResult to ever work. Do I need to configure a route with the parameters matching the properties of the user class?