I am attempting to load data from an MMPK file which was created using SDE layers. When using shape files as the layers this code works fine, but the SDE layers always throw an error that says simply says "No data". Does anyone know of a different way to load the content where I can actually read the data in it?
I'm using the following code to load the data:
this.MapPackage = await MobileMapPackage.OpenAsync(MapPackagePath);
and this code to make sure the data for one part of the map package has been loaded:
await this._esriMapTools.StreetLayer.LoadAsync();
The LoadAsync is when I receive the "No data" error.
Any help would be greatly appreciated.