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
. Use the DashboardDesigner.CustomDBSchemaProviderEx property to specify a custom database schema provider for SQL Data Sources.
To see the result, add a new query or edit the existing query. The Query Builder window contains only fields and tables that the custom database schema provider supplies.
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 Order
- Stored procedures with zero arguments
File: ManualDBSchemaProvider.cs (VB: ManualDBSchemaProvider.vb)
This provider loads two tables (Categories
and Products
) for the nwind.mdb database 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.
- LimitDBSchemaProvider.cs (VB: LimitDBSchemaProvider.vb)
- ManualDBSchemaProvider.cs (VB: ManualDBSchemaProvider.vb)
- Form1.cs (VB: Form1.vb)
- Dashboard for MVC - How to customize a data store schema for SQL data sources
- Dashboard for ASP.NET Core - How to customize a data store schema for SQL data sources
(you will be redirected to DevExpress.com to submit your response)