Upload an entire XML file to Azure Mobile Services -


i have xml 25,000 objects want transition cloud instead of keeping local. buuuuuut have no idea how xml document service, preferably want in sql database comes service. know how upload app 25,000 objects service times out. sure there cant find documentation on.

    private async void bw_worker(object sender, doworkeventargs e)     {         foreach(card x in cardslist)         {             await app.mobileservice.gettable<card>().insertasync(x);         }     } 

it gets past 7500 times out. running in background worker. couldn't find such limits on imagined process takes long complete.


Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -