ADO.NET Provider for Microsoft Dynamics 365

Build 22.0.8462

Querying with the DataAdapter

The CData ADO.NET Provider for Microsoft Dynamics 365 implements two ADO.NET interfaces you can use to retrieve data from Microsoft Dynamics 365: Dynamics365DataAdapter and Dynamics365DataReader objects. Whereas Dynamics365DataAdapter objects retrieve a single result set of all the data that matches a query, Dynamics365DataReader objects fetch data in subset increments as needed.

Using the Dynamics365DataAdapter

Use the adapter's Fill method to retrieve data from the data source. An empty DataTable instance is passed as an argument to the Fill method. When the method returns, the DataTable instance is populated with the queried data. Note that the Dynamics365DataAdapter is slower than the Dynamics365DataReader because the Fill method needs to retrieve all data from the data source before returning.

The following example selects the GoalHeadingId and GoalHeadingId columns of the GoalHeadings table:

C#

string connectionString = "InitiateOAuth=GETANDREFRESH;OrganizationUrl=https://myaccount.operations.dynamics.com/;Edition=Sales;";

using (Dynamics365Connection connection = new Dynamics365Connection(connectionString)) {
  Dynamics365DataAdapter dataAdapter = new Dynamics365DataAdapter(
  "SELECT GoalHeadingId, GoalHeadingId FROM GoalHeadings", connection);

  DataTable table = new DataTable();
  dataAdapter.Fill(table);

  Console.WriteLine("Contents of GoalHeadings.");

  foreach (DataRow row in table.Rows) {
    Console.WriteLine("{0}: {1}", row["GoalHeadingId"], row["GoalHeadingId"]);
  }
}

VB.NET

Dim connectionString As String = "InitiateOAuth=GETANDREFRESH;OrganizationUrl=https://myaccount.operations.dynamics.com/;Edition=Sales;"

Using connection As New Dynamics365Connection(connectionString)
  Dim dataAdapter As New Dynamics365DataAdapter("SELECT GoalHeadingId, GoalHeadingId FROM GoalHeadings", connection)

  Dim table As New DataTable()
  dataAdapter.Fill(table)

  Console.WriteLine("Contents of GoalHeadings.")

  For Each row As DataRow In table.Rows
    Console.WriteLine("{0}: {1}", row("GoalHeadingId"), row("GoalHeadingId"))
  Next
End Using

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462