Skip to content

Commit

Permalink
Correct schema in basic sequence sample (#3742)
Browse files Browse the repository at this point in the history
  • Loading branch information
roji authored Mar 1, 2022
1 parent 5c29222 commit e8e7e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/core/Modeling/Sequences/Sequence.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)

modelBuilder.Entity<Order>()
.Property(o => o.OrderNo)
.HasDefaultValueSql("NEXT VALUE FOR shared.OrderNumbers");
.HasDefaultValueSql("NEXT VALUE FOR OrderNumbers");
}
#endregion
}
Expand Down

0 comments on commit e8e7e34

Please sign in to comment.