I am trying to adapt this example to create a simple OData client. Before that, I added a service reference in Visual Studio to "http://services.odata.org/Northwind/Northwind.svc/".
By this step I got many classes like "Alphabetical_list_of_product". But how do I get the alphabetical list of products, for example?
Specifically, in the example the author just starts with:
OdataClient.NorthwindOdataService.NorthwindEntities dc =
new OdataClient.NorthwindOdataService.NorthwindEntities(
new Uri("http://services.odata.org/Northwind/Northwind.svc/"));
But where did he get the OdataClient.NorthwindOdataService.NorthwindEntities
class from?
I am new to web services and OData, so apologies if the question is vague.