I have a rowversion (timestamp
) column which is set to computed in my EF designer.
Setting the value in code, via the direct property like
myEnt.rowversion = screenRowVersion;
has now effect when SaveChanges()
is called, a trace to SQLServer shows that the original value of rowversion is used.
Is it possible to have the DbContext API accept an external computed value?