I have to implement an MVC action that is invoked like this:
http://address/Controller/MyAction?resName=name
and it\'s called by a third party
Prefix is what you need:
Prefix
ActionResult MyAction( [Bind(Prefix="resName")] String resourceName )
However, doing a http://address/Controller/MyAction?resourceName=name won't work with that setup.
http://address/Controller/MyAction?resourceName=name