In ASP.NET MVC3, some function, like HtmlHelper.ActionLink, can take in an implicitly typed object and convert it into an querystring
@Html.ActionLink("Link", "Action", new { id = 1, params="asd"})
Will result in an url like http://www.localhost.com/controller/Action?id=1¶ms=asd
Is there a built-in method to convert the properties of an object to a querystring format?