如何将图像类型添加到 EF4 Code First 实体?
如何将图像类型添加到 EF4 Code First 实体?我需要为缩略图添加一列。
public Image Thumbnail { get; set; }
谢谢!
How can I add an Image type to an EF4 Code First Entity? I need to add a column for thumbnail images.
public Image Thumbnail { get; set; }
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
图像在 EF 4 中表示为二进制
http://thedatafarm.com/blog/data-access/sql-server-2008-data-types-and-entity-framework-4/
您将需要执行类似的操作
然后转换图像到二进制
此参考将帮助您将图像转换为二进制 http: //www.dotnetspider.com/resources/6150-Convert-Image-binary-format.aspx
Images are represented as binary in EF 4
http://thedatafarm.com/blog/data-access/sql-server-2008-data-types-and-entity-framework-4/
You will need to do something like this
Then convert the image to binary
This reference will help you with the image to binary conversion http://www.dotnetspider.com/resources/6150-Convert-Image-binary-format.aspx
对于那些想知道类型
Binary
位于何处的人,我相信您也可以使用byte[]
For those wondering where the type
Binary
is located, also i belive you can usebyte[]