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
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);
}
}
Hi Everyone!
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;
Can you help me ?