Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 LINQ to SQL,并且我的图像字段被视为二进制。当我需要渲染图像时,将 Binary 类型转换为 byte[] (您可以只使用 Binary 对象的 ToArray() 方法)并不是什么大问题,但是有人可以告诉我如何转换 byte[] 或将对象流式传输到 Binary 对象中,以便我可以将其保存回数据库。
您可以使用构造函数:
public Binary(byte[] value)
像这样:
yourObj.BinaryProperty = new Binary(bytes);