Skip to content

DevExpress-Examples/mvc-dashboard-customize-data-store-schema-for-sql-data-sources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dashboard for MVC - How to customize a database schema for SQL data sources

This example shows how to create a custom database schema for the dashboard. The example contains two implementation of the IDBSchemaProviderEx interface, LimitDBSchemaProvider and ManualDBSchemaProvider. Call the DashboardConfigurator.SetDBSchemaProvider method to assign the database schema to the Web Dashboard.

To see the result, add a new query or edit the existing query.

The LimitDBSchemaProvider class

File: LimitDBSchemaProvider.cs (VB: LimitDBSchemaProvider.vb)

This provider displays only the following database entities:

  • Tables which names start with the letter C
  • Views which names start with Sales
  • Stored procedures with zero arguments

The ManualDBSchemaProvider class

File: ManualDBSchemaProvider.cs (VB: ManualDBSchemaProvider.vb)

This provider loads two tables (Categories and Products) for the nwindConnection connection. Both tables contain only two columns and the tables are linked by the CategoryID field.

This technique improves the Data Source Wizard performance when loading the database schema to the dashboard.

Files to Review

Documentation

More Examples

About

This example demonstrates how to customize a data store schema for a dashboard data source that uses a connection to the Northwind database.

Topics

Resources

License

Stars

Watchers

Forks