I have a UWP app in Windows Store and I believe that windows store compiles app using .Net Native tool chain before delivering it to users device.
My Code inserts/updates/deletes an object from storage table and it gets following error.
System.NotSupportedException: NotSupported_UnreadableStream.
For more information, visit http://go.microsoft.com/fwlink/?LinkId=623485
at System.IO.Stream.ReadAsync(Byte[] buffer, Int32 offset, Int32 count, Threading.CancellationToken cancellationToken)
at Microsoft.WindowsAzure.Storage.Core.NonCloseableStream.ReadAsync(Byte[] buffer, Int32 offset, Int32 count, Threading.CancellationToken cancellationToken)
Here is the code:
Delete Operation:
await AzureStorageTable.ExecuteAsync(TableOperation.Delete(myObject));
Insert/Update Operation:
await DeletesStorageTable.ExecuteAsync(TableOperation.InsertOrReplace(myObject));
Thanks for advance for the help.