Result

CategoryIDCategoryNameDescription
1BeveragesSoft drinks, coffees, teas, beers, and ales
2CondimentsSweet and savory sauces, relishes, spreads, and seasonings
3ConfectionsDesserts, candies, and sweet breads
4Dairy ProductsCheeses
5Grains/CerealsBreads, crackers, pasta, and cereal
6Meat/PoultryPrepared meats
7ProduceDried fruit and bean curd
8SeafoodSeaweed and fish

Config

    public class CategoryTable : MvcTable<Category>
    {
        public override void Configure(IStaticTableConfiguration<Category> config)
        {
            config
                .ScaffoldAllColumns()
                .SetAction("ListCategories", "Northwind")
                .SetCssClass("table table-striped");
        }
    }

Child Action

        public ActionResult ListCategories(TableRequestModel request)
        {
            var entities = new NorthwindEntities(NorthwindServiceUrl);
            return TableResult.From(entities.Categories).Build<CategoryTable>(request);
        }

Markup

    @Html.Action("ListCategories", new { request = new TableRequestModel() })