I am working with LINQ to SQL and my image fields are treated as Binary. It\'s no big issue to convert the Binary type to byte[] (you can just use the ToArray() method of t
You can use the constructor:
public Binary(byte[] value)
like this:
yourObj.BinaryProperty = new Binary(bytes);