S
stevev
Guest
You may want to try forcing a refresh of the OData model to see if that helps. This may be necessary if you have added any new tables to your database schema. You can do this with postman or similar tools (Fiddler, ...) First you need to discover your data source ID. Issue the following URL as GET: service.datadirectcloud.com/.../datasources This should return a list of your data sources in JSON. Find your data source by looking the names. There should an integer "id" listed as part of each data source. This integer is your data source ID. Next issue the following POST substituting the data source ID for the ID in the URL. service.datadirectcloud.com/.../map Use the following as the POST body. In Postman, use the "raw" button to see the edit box that you can enter this JSON. {"model": "refresh"} The model should be refreshed at this point, you can reattempt getting the service document on your data source to see if you see your entities. Send the following URL as a GET replacing the datasourcename with your data source name. service.datadirectcloud.com/.../ datasourcename
Continue reading...
Continue reading...