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。当我将对象插入数据库时,它的图像是 System.Drawing.Image,需要在 System.Data.Linq.Binary 中转换。
我找到了另一种方式的tutos,但没有找到这种方式。
using (MemoryStream ms = new MemoryStream()) { image.Save(ms, System.Drawing.Imaging.ImageFormat.Png); var binary = new System.Data.Linq.Binary(ms.GetBuffer()); }