SQL Compact 4.0 和 Entity Framework 4.0:图像/Blob 限制?
不久前,我尝试将 SQL Compact 3.5 SP1 与 Entity Framework 4.0 结合使用。我遇到的问题之一是图像/blob 对象的大小限制(例如 8K),这使得该类型几乎毫无用处。有谁知道这个问题是否随着 SQL Compact 4.0 的发布而得到解决?换句话说,如果我将 EF4 与 SQL Compact 4.0 结合使用,我可以存储的对象的大小限制是多少?感谢您的帮助。
A while back, I tried using SQL Compact 3.5 SP1 with Entity Framework 4.0. One of the problems I ran into was a size restriction on image/blob objects (something like 8K) that made the type pretty useless. Does anyone know if this problem has been fixed with the release of SQL Compact 4.0? In other words, If I am using EF4 with SQL Compact 4.0, what are the size limits of the objects I can store? Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
binary/varbinary 格式仍然限制为 8k。但图像最多可以有 2^30-1新版本中的字节。
The binary/varbinary formats are still limited to 8k. But Image can have up to 2^30-1 bytes in the new version.