I have the following table located in a view within a controller named Student (/Student/Details/1):
@foreach (var item in Model.Enrollments)
{
&
// you want to use link with the displaying a course. you can use.
m.Course.Title)
// second approach
@Html.ActionLink(item.Course.Title, "Details", "Course", new { Id = item.Course.Id })