We're trying to update an entity via WCF, and the entity contains a Timestamp column. When we attempt the update, we get the following Data.Linq error, "A member that is computed or generated by the database cannot be changed." This message is referring to the Timestamp column.
If we attempt the very same update not using WCF, it works fine. So the issue must be with WCF. We have the proper [DataMember] attribute on the Timestamp property for serialization. Anyone have any idea what the issue might be?
Thanks for your help.
Randy