MVC.Grid quick start
Name Surname Marital status Age Birthday Employed
Joe Crosswave Married 36 1/5/1988 False
Merry Lisel Widowed 46 5/6/1978
Henry Crux Single 34 11/19/1990 True
Cody Jurut 54 8/11/1970 False
Controller

[HttpGet]
public ViewResult Index()
{
    // Result needs to be IQueryable in database scenarios, to make use of database side paging.
    return View(Context.Set<Person>());
}

View

@model IQueryable<Person>

@(Html
    .Grid(Model)
    .Build(columns =>
    {
        columns.Add(model => model.Name).Titled("Name");
        columns.Add(model => model.Surname).Titled("Surname");
        columns.Add(model => model.MaritalStatus).Titled("Marital status");

        columns.Add(model => model.Age).Titled("Age");
        columns.Add(model => model.Birthday).Titled("Birthday").Formatted("{0:d}");
        columns.Add(model => model.IsWorking).Titled("Employed");
    })
    .Empty("No data found")
    .Filterable()
    .Sortable()
    .Pageable()
)