Browse a database

Docs

This application will allow you to browse a database using any table or view. Try it against your own database by adding a connection string to the appSettings file

Connections   Tables
Razor
                                
                                        
DbNetGridCore grid = new DbNetGridCore(Model.Db, string.IsNullOrEmpty(Model.View) ? Model.Table : Model.View)
{
    OptimizeForLargeDataset = true,
    QuickSearch = true,
    View = true
};
grid.Column("*").Filter().View().Style("{white-space:nowrap}");
@grid.Render()