List of Collection Names in oData
问题 I am little of confused how to get list of collection names from the following odata service http://services.odata.org/V4/Northwind/Northwind.svc/ I just want to get a list of all of the available collection names in the service And then I'd like to let the user choose which collection to view information for, and subsequently show items in that collection For example, the following line accessing to Customers collection. var customers = client.For("Customers").FindEntriesAsync(); I could