Skip to content

Commit

Permalink
Support for UUIDv7 values
Browse files Browse the repository at this point in the history
Signed-off-by: Tomasz Maruszak <[email protected]>
  • Loading branch information
zarusz committed Oct 10, 2024
1 parent f5fa6a8 commit 457b037
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
public enum OutboxMessageIdGenerationMode
{
/// <summary>
/// The database is responsible for generating the message id, using a guid (NEWID()).
/// The database is responsible for generating the message id, using NEWID().
/// See https://learn.microsoft.com/en-us/sql/t-sql/functions/newid-transact-sql?view=sql-server-ver16
/// </summary>
DatabaseGeneratedGuid,
/// <summary>
/// The database is responsible for generating the message id, using a sequential guid (NEWSEQUENTIALID()).
/// The database is responsible for generating the message id, using NEWSEQUENTIALID().
/// See https://learn.microsoft.com/en-us/sql/t-sql/functions/newsequentialid-transact-sql?view=sql-server-ver16
/// </summary>
DatabaseGeneratedSequentialGuid,
Expand Down

0 comments on commit 457b037

Please sign in to comment.