Skip to content

Commit

Permalink
Fix rowversion code sample in 8.0 what's new docs
Browse files Browse the repository at this point in the history
  • Loading branch information
roji committed May 15, 2024
1 parent c12040f commit 0a454f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entity-framework/core/what-is-new/ef-core-8.0/whatsnew.md
Original file line number Diff line number Diff line change
Expand Up @@ -2588,7 +2588,7 @@ SQL Server automatic [optimistic concurrency](xref:core/saving/concurrency) is h
```csharp
modelBuilder.Entity<Blog>()
.Property(e => e.RowVersion)
.HasConversion<byte[]>()
.HasConversion<ulong>()
.IsRowVersion();
```
Expand Down

0 comments on commit 0a454f2

Please sign in to comment.