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.
DBに画像を保存するアプリケーションに取り組んでいます。画像はオブジェクトに関連しているため、これには 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()); }