EntityFramework.CommonTools
EntityFramework.CommonTools copied to clipboard
Misprint in code sample
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; } }