+2  A: 

You can't pass the model object. This argument expects the route values such as an ID.

if you pass in Ajax.ActionLink("Create", "Create", new { id=23 }, ....

it will create /create/23.

klabranche