We have a table that has a column called Version that is mapped as a SQL rowversion. This is done because we have an external system that maps to o
Version
rowversion
By default EF implies row version type to be a optimistic concurrency token (included in the optimistic concurrency checks).
You can override that behavior by using the IsConcurrencyToken fluent API:
IsConcurrencyToken
Property(t => t.Version).IsRowVersion().IsConcurrencyToken(false);