public override async ValueTask <Identifier> NextAsync(EntityEntry entry, CancellationToken cancellationToken = new CancellationToken())
        {
            Identifier id = new Identifier(await _valueGenerator.NextAsync(entry, cancellationToken));

            return(id);
        }