Parameter type for interface is Guid but RowVersion property type byte[]. It is needed to replace parameter type from Guid to byte[]. class MyEntity : IConcurrencyCheckable<**Guid**> { [Timestamp] public **byte[]** RowVersion { get; set; } }
Parameter type for interface is Guid but RowVersion property type byte[]. It is needed to replace parameter type from Guid to byte[].
class MyEntity : IConcurrencyCheckable<Guid>
{
[Timestamp]
public byte[] RowVersion { get; set; }
}