What SqlDbType maps to varBinary(max)? SqlDbType.VarBinary says that it is limited to 8K. SQL Server documentation says that varbinary(max) can store aprrox. 2GB. But SqlDbType.VarBinary says that it is limited to 8K.
|
|
||||
|
|
|
SqlDbType.VarBinary with length -1 is the equivalent of VARBINARY(MAX), at least in theory. But the problem is a bit more complex, as there is also a type (not an enum value), namely But the problem is that none of these enums or types cover the real issue with working with |
|||
|
|
|
Try this:
See if that works |
|||||||
|
|
|
This might help: http://msdn.microsoft.com/en-us/library/a1904w6t.aspx As ugly as it might be, SqlDbType.Image appears to be the way to go. Looks like I need to update my ORM, since anything over 8k would currently break it. |
|||
|
|