Local DB throws Byte array truncation to a length of 8000 exception

江枫思渺然 提交于 2019-11-29 06:56:47

If you look at the SQL Compact docs, you'll see that a binary or varbinary field can be at most 8000 bytes, so that tells me that a byte[] column gets mapped to varbinary. To get it to store data larger than that, you'd need to get the engine to use an image field type. This might be as simple as updating the Column attribute like this (untested):

[Column(DbType="image")]
public byte[] LocationImage { ... }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!