In Ruby on Rails you can do this:
link_to("My link text", someModelInstance)
This will generate a link with the caption “My link text” and a href that points to the item stored in the someModelInstance variable.
Is there a similar way to do this is MVC 4?
You can use T4MVC to achieve this in MVC.