I have successfully fetched data from the URL and assigned it to my Customers dictionary and and I could able to write each customer object on my output. However, since I am quite new on this platform, I could not able to populate the data on TableView Cell. I have attached my code.
private IEnumerable <IDictionary<string,object>> Customers;
public MyDataServices ()
{
InitializeComponent ();
InitializeDataService ();
GetDataFromOdataService ();
foreach (var customers in Customers){
System.Diagnostics.Debug.WriteLine((string)customers["ContactName"]);
// populate Data on TableView
}
Padding = new Thickness (10, 20, 10, 10);
Content = new StackLayout () {
Children = { tableView }
};
}