A library for .Net that makes creating and working with custom identifiers easy. Stop relying on ambiguous Guid's/Integers for your Id's and start using something ubiquitous !
Reliable unique ID generation for distributed applications.
This package provides highly tuned tools for ID generation and management.
Auto-increment IDs reveal sensitive information. UUIDs (also known as GUIDs) are inefficient as primary keys in a database. Having two different IDs is cumbersome...
More information
Azure-based implementations for the Architect.Identities package.
This package allows Azure blob storage to be used as the synchronization mechanism for assigning unique IDs to each application instance.
services.AddIdGenerator(generator => generator.UseAzureBlobStorageContainer(new...
More information
EntityFramework extensions for the Architect.Identities package.
Use DbContext-based connections for the Fluid ID generator:
public void ConfigureServices(IServiceCollection services)
{
services.AddPooledDbContextFactory<ExampleDbContext>(context => context.UseSqlServer("ConnectionString"));...
More information