NextId 2.1.0

dotnet add package NextId --version 2.1.0
                    
NuGet\Install-Package NextId -Version 2.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NextId" Version="2.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NextId" Version="2.1.0" />
                    
Directory.Packages.props
<PackageReference Include="NextId" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NextId --version 2.1.0
                    
#r "nuget: NextId, 2.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package NextId@2.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NextId&version=2.1.0
                    
Install as a Cake Addin
#tool nuget:?package=NextId&version=2.1.0
                    
Install as a Cake Tool

NextId

Strongly-typed, K-Sortable globally unique identifier with checksum for .NET 8+.


Example

Example value:

user-222v7NyttKhf2dvcpStpdNKD9TW
  • Left from - is type (max 11 characters)
  • Right from - is id value

id is componsed of:

  • First 12 chars, Unix timestamp in microseconds
  • Next 12 chars, random value
  • Final 3 chars, checksum value

Checksum can be used to validate id before going to database to detect malicious or unexpected activities by clients.


NumberValue can be used to avoid displaying Id as random string which can unintentionally contain words. It also has obfuscated time component by xoring with hash of Salt value and reversing resulting string. Obfuscation is done to prevent easily guessing time component of the id.

Example number value:

user-9646185430515823890035197343360748348694018675

How to use it

Install nuget package

dotnet add package NextId

Optionally add reference to NextId.Gen to use source generator.

Using NextId with Source Generator

Add reference to NextId.Gen to use source generator. Source generator is available since version 2.

<PackageReference Include="NextId.Gen" 
                  Version="[2.*, 3)"
                  OutputItemType="Analyzer"
                  ReferenceOutputAssembly="false"
                  />

Optionally set Version to be fixed, e.g. "2.1.0"

Create partial class for id:

[Identifier(Prefix = "user", Salt = "99AAB45utg")]
public partial class UserId;

Source generator will create boilerplate code as in example in next section.

Using NextId without Source Generator

Inherit NextId.Identifier class:

public class UserId : Identifier<UserId>, IParsable<UserId>
{
    private const string PrefixConst = "user";
    private const string SaltConst = "99AAB45utg";
    protected override string Prefix => PrefixConst;
    protected override string Salt => SaltConst;

    private UserId() { }
    
    // constructor with time component
    public UserId(DateTimeOffset dt) : base(dt) { }

    // constructor for parsing
    private UserId(string value) : base(value) { }

    public static UserId NewId() => new();

    public static UserId Parse(string s) => Parse(s, null);

    public static UserId Parse(string s, IFormatProvider? provider) => new(s);

    public static bool TryParse(string? s, IFormatProvider? provider, [NotNullWhen(true)]out UserId? result)
    {
        try
        {
            result = Parse(s!, provider);
            return true;
        }
        catch
        {
            result = null;
            return false;
        }
    }

    public static bool IsValid(string value) => IsValid(value, PrefixConst, SaltConst);
}
UserId id1 = UserId.NewId();
UserId id2 = UserId.Parse(id1.Value);
UserId id3 = UserId.Parse(id1.NumberValue);

(id1 == id2).Should().BeTrue();
(id1 == id3).Should().BeTrue();

You can get string value of identifier by calling Value property or ToString() method.

Prefix will be set as identifier prefix (user in this case). Value must have less than 12 characters and can contain only ASCII letters and digits.

Salt must be less than 33 characters and should be set to random value for each type. Once set, it must not be changed, otherwise parsing of existing values will fail.

Serialization

System.Text.Json serializer options are available.

First add package reference:

dotnet add package NextId.Serialization.Json
var options = new JsonSerializerOptions();
// set serializeIdsAsNumberValues to true to serialize ids as `NumberValue`
options.AddIdentifierConverters(serializeIdsAsNumberValues: false);

User user1 = User.NewRandomUser();
string json = JsonSerializer.Serialize(user1, options);
User user2 = JsonSerializer.Deserialize<User>(json, options)!;

Performance

v2 performance:

BenchmarkDotNet=v0.13.5, OS=Windows 10 (10.0.19045.6456/22H2/2022Update)
AMD Ryzen 7 2700X, 1 CPU, 16 logical and 8 physical cores
.NET SDK=9.0.306
  [Host]     : .NET 8.0.21 (8.0.2125.47513), X64 RyuJIT AVX2
  DefaultJob : .NET 8.0.21 (8.0.2125.47513), X64 RyuJIT AVX2
Method Mean Error StdDev Gen0 Allocated
NewId_1000 171.7 us 0.85 us 0.80 us 45.8984 187.5 KB
NewId_1000_NumberValue 266.4 us 1.62 us 1.52 us 62.9883 257.81 KB
Parse_1000 214.5 us 0.58 us 0.48 us 40.0391 164.06 KB

NewId_1000 is method generating 1000 ids and getting Value. NewId_1000_NumberValue is method generating 1000 ids and getting NumberValue. Parse_1000 is method parsing 1000 ids.

v2 is 4-10x faster and allocates 10-12x less memory.

v1 Performance:

Method Mean Error StdDev Gen0 Allocated
NewId_1000 861.8 us 5.00 us 4.68 us 416.9922 1.67 MB
NewId_1000_NumberValue 2,855.3 us 5.07 us 4.50 us 722.6563 2.89 MB
Parse_1000 1,982.8 us 20.11 us 18.81 us 640.6250 2.56 MB

Changes

  • 2.1.0

    • Set prefix min lenght to 1
    • Make is
  • 2.0.0

    • Full rewrite, not backward compatible
    • Replaced SHA256 with xxHash128
    • New faster code that allocates less memory
    • Added source generator for boilerplate code
  • 1.1.1

    • Fix bug where IsValid method returns false for NumberValue
  • 1.1.0

    • Fixed bug when verifying validity of value
    • Added support for NumberValue
  • 1.0.0

    • Initial version
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on NextId:

Package Downloads
NextId.Serialization.Json

System.Text.Json serializer support for NextId identifiers

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.1.0 170 11/8/2025
2.0.0 144 11/1/2025
1.1.1 1,121 12/23/2023
1.1.0 226 12/23/2023
1.0.1 370 8/19/2023
1.0.0 370 7/2/2023