You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 19, 2024. It is now read-only.
I am connected DAX365FO and I tried to execute this code, but i received this message "Connection was forcibly closed"
public static void GetTopRecords(Resources d365)
{
var vendorsQuery = d365.Vendors.AddQueryOption("$top", "10");
var vendors = vendorsQuery.Execute() as QueryOperationResponse;
foreach (var vendor in vendors)
{
Console.WriteLine("Vendor with ID {0} retrived.", vendor.VendorAccountNumber);
}
}