I don't find a method to add a custom column in a MvcContrib Grid. With the old version you could do :
column.For("Edit").Do(p => { %>
<td>
<a href="/People/Edit/<%= p.Id %>">Edit</a>
</td>
%>});
But with the latest version, the Do() method disappears... So now which method use ?