Possible Duplicate:
Local DB throws Byte array truncation to a length of 8000 exception
The SQL database on the phone won't let me store a byte array bigger than 8000 bytes. I've looked at other datatypes here:
http://msdn.microsoft.com/en-us/library/ms172424(SQL.110).aspx
but types that hold more data, like NTEXT, can't be used in WP7. I need to store a byte array of length greater than 300,000 bytes.
Any ideas how I can get around this issue?
Any help is appreciated!
Edit: The whole idea is to store an image as a byte array on a local and on a remote server.