如何将图像类型添加到 EF4 Code First 实体?

发布于 2024-10-02 07:14:11 字数 123 浏览 4 评论 0原文

如何将图像类型添加到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一瞬间的火花 2024-10-09 07:14:11

图像在 EF 4 中表示为二进制

http://thedatafarm.com/blog/data-access/sql-server-2008-data-types-and-entity-framework-4/

您将需要执行类似的操作

public Binary Thumbnail {get; set}

然后转换图像到二进制

此参考将帮助您将图像转换为二进制 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

public Binary Thumbnail {get; set}

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

对你再特殊 2024-10-09 07:14:11
public System.Data.Linq.Binary Thumbnail {get; set}

对于那些想知道类型 Binary 位于何处的人,我相信您也可以使用 byte[]

public System.Data.Linq.Binary Thumbnail {get; set}

For those wondering where the type Binary is located, also i belive you can use byte[]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文