ADO.NET Provider for Microsoft Dynamics 365 Business Central

Build 23.0.8839

Views

You can retrieve the listing of views from the Views schema collection.

Retrieving the View Listing

To retrieve the Views schema collection, call the GetSchema method of the D365BusinessCentralConnection class, as shown in the following examples.

C#

String connectionString = "InitiateOAuth=GETANDREFRESH;OrganizationUrl=https://api.businesscentral.dynamics.com/v1.0/api/v1.0";

using (D365BusinessCentralConnection conn = new D365BusinessCentralConnection(connectionString)) {
  conn.Open();
  DataTable databaseSchema = conn.GetSchema("Views");
  foreach (DataRow row in databaseSchema.Rows) {
    Console.WriteLine(row["TABLE_NAME"]);
  }
}

VB.NET

Dim connectionString As String = "InitiateOAuth=GETANDREFRESH;OrganizationUrl=https://api.businesscentral.dynamics.com/v1.0/api/v1.0"

Using conn As New D365BusinessCentralConnection(connectionString)
  conn.Open()
  Dim databaseSchema As DataTable = conn.GetSchema("Views")
  For Each row As DataRow In databaseSchema.Rows
    Console.WriteLine(row("TABLE_NAME"))
  Next
End Using

Columns Returned

The Views schema collection returns the following columns:

Column NameData TypeDescription
TABLE_CATALOGSystem.StringThe database that contains the view.
TABLE_SCHEMASystem.StringThe schema that contains the view.
TABLE_NAMESystem.StringThe view name.
CHECK_OPTIONSystem.StringWhether the view was created using WITH CHECK OPTION.
IS_UPDATEABLESystem.StringWhether the view is updateable.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839