Bind a Pivot Grid to a Server Mode Database at Design Time
- 2 minutes to read
If you need to connect a pivot grid control to a database with a large number of records, you can use server mode. The pivot grid control, if it is bound to an appropriate data source, automatically operates in server mode. You can use dedicated data sources tailored to work with ‘LINQ to SQL Classes’ or ‘Entity Framework 4+’ data access technologies.
The following example is a step-by-step guide that demonstrates how to bind a PivotGridControl to a LinqServerModeSource data source at design time using the Data Source Configuration Wizard.
This example consists of the following steps.
- Launching the Data Source Configuration Wizard
- Creating Data Classes
- Binding to the Data Source using ‘LINQ to SQL Classes’
Launching the Data Source Configuration Wizard
To invoke the Data Source Configuration Wizard, do one of the following.
- Click the Data Source Wizard panel in the center of the pivot grid control.
Click the smart tag icon () displayed at the top-right of the pivot grid and select the Data Source Wizard item.
Select LINQ to SQL technology and click New Data Source… button.
The Add New Item window is invoked. This allows you to create new data classes.
Creating Data Classes
Select the LINQ to SQL Classes item and add it to the project.
Data classes can then be created and edited in an Object Relational Designer (O/R Designer). An O/R Designer provides a visual design surface for creating LINQ to SQL entity classes and relationships based on objects in a database.
Create and map entity classes to tables and views by dragging database tables and views from Server Explorer onto the O/R Designer..
- Save your changes, close the O/R Designer, and rebuild the solution.
Binding to a Data Source using ‘LINQ to SQL Classes’
Invoke the Data Source Configuration Wizard again, select the LINQ to SQL technology and choose the previously created data source. Click Next.
In the next window, select Server-Side Data Processing and click Next. This activates the server mode.
Select a table and a key expression column, and click Finish to close the Data Source Configuration Wizard.
The PivotGridControl is now bound to the LinqServerMode data source and automatically operates in server mode.
To learn how to retrieve fields at design time, see the Fields Page topic.