EntityFramework.CommonTools icon indicating copy to clipboard operation
EntityFramework.CommonTools copied to clipboard

Misprint in code sample

Open denis-tsv opened this issue 4 years ago • 0 comments

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; } }

denis-tsv avatar Apr 18 '20 12:04 denis-tsv