VOOZH about

URL: https://www.cdata.com/kb/tech/dynamicscrm-ado-infragistics-datagrid.rst

⇱ Create Dynamic Dynamics CRM Grids Using the Infragistics XamDataGrid


Create Dynamic Dynamics CRM Grids Using the Infragistics XamDataGrid

πŸ‘ Jerod Johnson
Jerod Johnson
Director, Technology Evangelism
Learn how you can connect Dynamics CRM to Infragistics XamDataGrid to build dynamic grids.

Using Infragistics WPF UI controls, you can build contemporary applications reminiscent of Microsoft Office for both desktop and touch-based devices. When coupled with the CData ADO.NET Provider for Dynamics CRM, you gain the capability to construct interactive grids, charts, and various other visual elements while directly accessing real-time data from Dynamics CRM data. This article will guide you through the process of creating a dynamic grid within Visual Studio using the Infragistics XamDataGrid control.

About Dynamics CRM Data Integration

CData simplifies access and integration of live Microsoft Dynamics CRM data. Our customers leverage CData connectivity to:

  • Read and write data in the Dynamics CRM 2011+ Services and Dynamics CRM Online.
  • Extend the native features of Dynamics CRM with customizable caching and intelligent query aggregation and separation.
  • Authenticate securely with Dynamics CRM in a variety of ways, including Azure Active Directory, Azure Managed Service Identity credentials, and Azure Service Principal using either a client secret or a certificate.

CData customers use our Dynamics CRM 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 Dynamics CRMa data from their preferred data tools inside the Microsoft ecosystem (Power BI, Excel, etc.) or with external tools (Tableau, Looker, etc.).


Getting Started


You will need to install the Infragistics WPF UI components to continue. Download a free trial here: https://www.infragistics.com/products/wpf.

Create a WPF Project

Open VisualStudio and create a new WPF project.

Add a TextBox for passing a SQL query to the CData ADO.NET Provider and a Button for executing the query.

πŸ‘ Adding a TextBox and Button to the App.

The XAML at this stage is as follows:

< Window
 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 xmlns:local="clr-namespace:CDataXamDataGridGroupingListApp"
 xmlns:igWPF="http://schemas.infragistics.com/xaml/wpf" x:Class="CDataXamDataGridGroupingListApp.MainWindow"
 mc:Ignorable="d"
 Title="MainWindow" Height="450" Width="800">
 < Grid>
 < TextBox x:Name="textBox" HorizontalAlignment="Left" Height="44" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="682" Margin="10,10,0,0"/>
 < Button x:Name="button" Content="Execute" HorizontalAlignment="Left" Margin="697,10,0,0" VerticalAlignment="Top" Width="85" Height="44"/>
 < /Grid>
< /Window>

Add and Configure a XamDataGrid

After adding the initial controls, add a XamDataGrid to the App. The component will appear in the Visual Studio toolbox.

πŸ‘ Adding the XamDataGrid to the App.

Arrange the component on the designer so that it is below the TextBox & Button and linked to the boundaries of the app.

πŸ‘ XamDataGrid Placement.

Once the XamDataGrid is placed, edit the XAML to set the XamDataGrid DataSource attribute to "{Binding}" and set the FieldSettings AllowRecordFiltering and AllowSummaries attributes to "true." Next, add an empty method as the Click event handler for the Button component. The XAML at this stage is as follows:

< Window
 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 xmlns:local="clr-namespace:CDataXamDataGridGroupingListApp"
 xmlns:igWPF="http://schemas.infragistics.com/xaml/wpf" x:Class="CDataXamDataGridGroupingListApp.MainWindow"
 mc:Ignorable="d"
 Title="MainWindow" Height="450" Width="800">
 < Grid>
 < TextBox x:Name="textBox" HorizontalAlignment="Left" Height="44" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="682" Margin="10,10,0,0"/>
 < Button x:Name="button" Content="Execute" HorizontalAlignment="Left" Margin="697,10,0,0" VerticalAlignment="Top" Width="85" Click="Button_Click" Height="44"/>

 < igWPF:XamDataGrid Margin="10,59,10,10" DataSource="{Binding}">
 < igWPF:XamDataGrid.FieldSettings>
 < igWPF:FieldSettings AllowSummaries="True" AllowRecordFiltering="True"/>
 < /igWPF:XamDataGrid.FieldSettings>
 < /igWPF:XamDataGrid>

 < /Grid>
< /Window>

Connect to and Query Dynamics CRM

The last step in building our WPG App with a dynamic DataGrid is connecting to and querying live Dynamics CRM data. First add a reference to the CData ADO.NET Provider to the project (typically found in C:\Program Files\CData[product_name]\lib).

πŸ‘ Adding the CData ADO.NET Provider as a Reference (Salesforce is shown.)

Next, add the Provider to the namespace, along with the standard Data library:

using System.Data.CData.DynamicsCRM;
using System.Data;

Finally, add the code to connect to Dynamics CRM and query using the text from the TextBox to the Click event handler.

The connection string options meet the authentication and connection requirements of different Dynamics CRM instances. To connect to your instance, set the User and Password properties, under the Authentication section, to valid Dynamics CRM user credentials and set the Url to a valid Dynamics CRM server organization root. Additionally, set the CRMVersion property to 'CRM2011+' or 'CRMOnline'. IFD configurations are supported as well; set InternetFacingDeployment to true.

Additionally, you can provide the security token service (STS) or AD FS endpoint in the STSURL property. This value can be retrieved with the GetSTSUrl stored procedure. Office 365 users can connect to the default STS URL by simply setting CRMVersion.

private void Button_Click(object sender, RoutedEventArgs e)
{
 //connecting to Dynamics CRM
 string connString = "User=myuseraccount;Password=mypassword;URL=https://myOrg.crm.dynamics.com/;CRM Version=CRM Online;";
 using (var conn = new DynamicsCRMConnection(connString))
 {
 //using the query from the TextBox
 var dataAdapter = new DynamicsCRMDataAdapter(textBox.Text, conn);
 var table = new DataTable();
 dataAdapter.Fill(table);
 
 //passing the DataRowCollection to the DataContext
 // for use in the XamDataGrid
 this.DataContext = table.Rows;
 }
}

Run the Application

With the app fully configured, we are ready to display Dynamics CRM data in our XamDataGrid. When you click "Execute," the app connects to Dynamics CRM and submits the SQL query through the CData ADO.NET Provider.

πŸ‘ Querying Dynamics CRM Data

Live Dynamics CRM data is displayed in the grid.

πŸ‘ Displying Dynamics CRM Data (Salesforce is shown)

Group the data by dragging and dropping a column name into the header.

πŸ‘ Grouping Dynamics CRM Data (Salesforce is shown)

As you add groupings and filters, the underlying SQL query is submitted directly to Dynamics CRM, making it possible to drill down into live Dynamics CRM data to find only the specific information you need.

πŸ‘ Grouped and filtered Dynamics CRM Data (Salesforce is shown)

Free Trial & More Information

At this point, you have created a dynamic WPF App with access to live Dynamics CRM data. For more information, visit the CData ADO.NET Provider page. Download a free, 30-day trial and start working live Dynamics CRM data in apps built using the Infragistics UI controls today.

Ready to get started?

Download a free trial of the Dynamics CRM Data Provider to get started:

 Download Now

Learn more:

πŸ‘ Dynamics CRM Icon
Dynamics CRM ADO.NET Provider

Rapidly create and deploy powerful .NET applications that integrate with Microsoft Dynamics CRM account data including Leads, Contacts, Opportunities, Accounts, and more!