I am using a third party library for a Grid which uses fixed querystring parameters as shown below.
/Home/GetData/?$skip=0&$top=10
These parameters have a $ in their key and I wanted to know if there is a way to still have the MVC model binding work for these parameters.
i.e.
applying them to this action (which won't compile because of the $ in the parameter names.
public ActionResult GetData(int $skip, int $top)
{
...
return View();
}