everyone.
I'm trying to add an optimistic concurrency in my entities. There's a property defined in the entity class:
public byte[] ObjectVersion
{
// ...
}
Here's configuration of this property:
Property(obj => obj.ObjectVersion)
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.Computed)
.HasColumnName("ObjectVersion")
.IsConcurrencyToken();
In run-time exception is thrown: "The store generated pattern 'Computed' is not supported for properties that are not of type 'timestamp' or 'rowversion'". Matching database column has 'rowversion' type.
OK, let's change the configuration code:
Property(obj => obj.ObjectVersion)
.HasDatabaseGeneratedOption(DatabaseGeneratedOption.Computed)
.HasColumnName("ObjectVersion")
.HasColumnType("rowversion")
.IsConcurrencyToken();
But exception is still thrown. What am I doing wrong?