In a Universal Windows App, how would I access data from a company database? Web Service seems the only way that I have seen so far. Somehow I need to hook into the company database.
This particular app will run in a shop shipping area (desktop) and in trucking (mobile/tablet) when they deliver or drop off.
So we were thinking when trucking gets into the wifi range to the shops, then It can connect to the sql server database somehow.
You cant connect to sql servers via network. To have a local cache / database have a look at sqlite. This can be embedded in your app
Also have a look to azure app services with offline data sync (weird name but oke..) https://learn.microsoft.com/nl-nl/azure/app-service-mobile/app-service-mobile-offline-data-sync this can give you a headstart for what you are looking for