Adding a Reference to .NET Business Connector
This example assumes that you have a project in which you want to access Microsoft Dynamics AX data. You must create a connection using .NET Business Connector. In this section you will add a reference to the .NET Business Connector.
To add a reference to .NET Business Connector
-
Open Visual Studio.
-
In Solution Explorer, right-click References and click Add Reference.
-
In the Add Reference window, click the Browse tab.
-
Specify the location of Microsoft.Dynamics.BusinessConnectorNet.dll, and then click Add.
Note |
|---|
|
For a typical install, assemblies are located at C:\Program Files\Microsoft Dynamics AX\50\Client\Bin\.
|
-
Click OK.
In this section, you will execute a query to read records from the AddressState table. You will use the AxaptaRecord class to create a query by calling the Axapta.CreateAxaptaRecord method. This returns the data by using the AxaptaRecord.Field property. The AxaptaRecord.Next method is used to iterate through the list of returned records so that you can display the records. This example displays the output in a console window.
To read data
You will see the results in a console window when this code is executed. You can also, create, update, and delete Microsoft Dynamics AX data. For more information, see How to: Create Data Using .NET Business Connector, How to: Update Data Using .NET Business Connector, and How to: Delete Data Using .NET Business Connector.You may want to call X++ business logic in addition to accessing data. For more information, see How to: Call Business Logic Using .NET Business Connector.