![]() |
VOOZH | about |
DataBinding facilitates two-way interaction with data through UI controls. Using the CData ADO.NET Provider for Microsoft Dataverse streamlines the process of binding Microsoft Dataverse data to Windows Forms and Web controls within Visual Studio. In this article, we will demonstrate using wizards to establish a binding between Microsoft Dataverse data and a chart that dynamically updates. Additionally, the code walk-through section will guide you through the creation of a chart using just 10 lines of code.
CData provides the easiest way to access and integrate live data from Microsoft Dataverse (formerly the Common Data Service). Customers use CData connectivity to:
CData customers use our Dataverse connectivity solutions for a variety of reasons, whether they're looking to replicate their data into a data warehouse (alongside other data sources)or analyze live Dataverse data from their preferred data tools inside the Microsoft ecosystem (Power BI, Excel, etc.) or with external tools (Tableau, Looker, etc.).
DataBinding to a Chart consists of three steps: Instantiate the control, configure the data source, and databind.
To create a chart control and establish a connection to Microsoft Dataverse, follow the steps outlined below using the Data Source Configuration Wizard. Within the wizard, you'll have the option to choose the specific Microsoft Dataverse entities you wish to bind to.
In the Add Connection dialog, click Change to select the CData Microsoft Dataverse Data Source.
Below is a typical connection string:
OrganizationUrl=https://myaccount.crm.dynamics.com/;InitiateOAuth=GETANDREFRESH;
You can connect without setting any connection properties for your user credentials. Below are the minimum connection properties required to connect.
When you connect the Common Data Service OAuth endpoint opens in your default browser. Log in and grant permissions. The OAuth process completes automatically.
When you configure the connection, you may also want to set the Max Rows connection property. This will limit the number of rows returned, which is especially helpful for improving performance when designing reports and visualizations.
๐ Connection properties for the selected data source in the Add Connection dialog. (Salesforce is shown.)After adding the data source and selecting database objects, you can bind the objects to the chart. This example assigns the x-axis to AccountId and the y-axis to Name.
The chart is now databound to the Microsoft Dataverse data. Run the chart to display the current data.
๐ The chart, filled with data at run time.
DataBinding to Microsoft Dataverse data requires only a few lines of code and can be completed in three easy steps.
Below is the complete code:
CDSConnection conn = new CDSConnection("OrganizationUrl=https://myaccount.crm.dynamics.com/;InitiateOAuth=GETANDREFRESH;");
CDSCommand comm = new CDSCommand("SELECT AccountId, Name FROM Accounts WHERE Name = 'MyAccount'", conn);
CDSDataAdapter da = new CDSDataAdapter(comm);
DataSet dataset = new DataSet();
da.Fill(dataset);
chart1.DataSource = dataset;
chart1.Series[0].XValueMember = "AccountId";
chart1.Series[0].YValueMembers = "Name";
// Insert code for additional chart formatting here.
chart1.DataBind();
Download a free trial of the Microsoft Dataverse Data Provider to get started:
Download NowLearn more:
๐ Microsoft Dataverse IconRapidly create and deploy powerful .NET applications that integrate with Microsoft Dataverse.