I have an object that has a property:
[Column]
public Binary Image { get; set; }
When the object is saved the first time every this is OK, but when it is modified I get an exception on SubmitChanges:
The data types image and varbinary(max) are incompatible in the equal to operator.
What might be the problem here?