سؤال

I am building a Windows Phone app in Visual Stdio 2013 that should run on all versions of windows phone(7,7.5,8,8.1,...).

I need to store around 20mb of data from website that needs to be updated as soon as the change is made in the website. I am using Isolated Storage for storing offline data.Will IsolatedStorage be able to store 20mb of data ?

Or else what should I use to store offline data?

thanks in advance..

هل كانت مفيدة؟

المحلول 2

You can store your data through sqlite file which is very easy to implement because you have to store offline data and you can't store the data in IsolatedStorage because once user have download the App and then he may be able to store in Isolated Storage not before. So you can do one thing first make a sqlite file in which you store your data and then parse the sqlite file in code and store it in Isolated Storage so User will not require Internet. I have done this before in which i have to download large data from my server and then store it in Isolated Storage in which it usses Internet and also takes time.

نصائح أخرى

MSDN Says

Windows Phone apps are not restricted to a particular quota. They should make careful use of storage based on their app scenario requirements.

For more information see this MSDN documentation

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top