ObjectIdentity 1.0.0
See the version list below for details.
dotnet add package ObjectIdentity --version 1.0.0
NuGet\Install-Package ObjectIdentity -Version 1.0.0
<PackageReference Include="ObjectIdentity" Version="1.0.0" />
<PackageVersion Include="ObjectIdentity" Version="1.0.0" />
<PackageReference Include="ObjectIdentity" />
paket add ObjectIdentity --version 1.0.0
#r "nuget: ObjectIdentity, 1.0.0"
#:package ObjectIdentity@1.0.0
#addin nuget:?package=ObjectIdentity&version=1.0.0
#tool nuget:?package=ObjectIdentity&version=1.0.0
ObjectIdentity
A library for generating unique IDs for objects prior to their being saved to the database with SQL Server backend support via sequences.
Features
- Thread-safe unique ID generation
- SQL Server backend
- Extensible to support alternative stores for mechanisms via the IIdentityStore interface
- Configurable ID ranges
- Efficient batch allocation, allocation of block sizes can be handled via the scope initializer
- Designed to be able to handle existing data by allowing the sequences to be configured with a starting id
- Intended to reduce round trips to the database by grabbing sets of ids at a time
- Uses a background thread to retrieve additional ids prior to the id cache running out to prevent intermittiant pauses in id assignment
Usage
Dependency Injection Setup (Recommended)
ObjectIdentity now supports Microsoft.Extensions.DependencyInjection for easy integration:
<pre><code class='language-cs'> using Microsoft.Extensions.DependencyInjection; using ObjectIdentity;
var services = new ServiceCollection(); services.AddObjectIdentity(options ⇒ { options.ConnectionString = "your-connection-string"; options.TableSchema = "dbo"; // ...other options });
var provider = services.BuildServiceProvider(); var manager = provider.GetRequiredService<IdentityManager>();
// Get the next available ID for an object such as LedgerTransaction long id = manager.GetNextIdentity<LedgerTransaction, long>(); </code></pre>
Basic Setup (Manual Construction)
You can still manually construct the components if you need more control:
<pre><code class='language-cs'> using Microsoft.Extensions.Options; using ObjectIdentity;
var options = Options.Create(new ObjectIdentityOptions { ConnectionString = "your-connection-string", TableSchema = "dbo" }); var store = new SqlIdentityStore(options); var factory = new IdentityFactory(store, options); var manager = new IdentityManager(factory); </code></pre>
Getting IDs
Once configured, you can request IDs for your domain objects:
<pre><code class='language-cs'> // Get the next available ID for an object such as LedgerTransaction long id = manager.GetNextIdentity<LedgerTransaction, long>(); </code></pre>
Custom Starting Values
You can initialize scopes with specific starting values:
<pre><code class='language-cs'> // Initialize a scope with a specific starting ID manager.IntializeScope<long>("CustomScope", 1000); // Or use a type to define the scope manager.InitializeScope<MyEntityType, long>(1000); // Get IDs from the initialized scope long id = manager.GetNextIdentity<MyEntityType, long>(); </code></pre>
Concurrent Usage
The library is designed for thread-safe operation in multi-threaded environments:
<pre><code class='language-cs'> // Create tasks that generate IDs concurrently var tasks = new List<Task<List<long>>>(); for (var i = 0; i < 10; i++) { var task = Task.Run(() ⇒ { var ids = new List<long>(); for (var j = 0; j < 1000; j++) { ids.Add(manager.GetNextIdentity<MyEntity, long>()); } return ids; }); tasks.Add(task); } // Wait for all tasks to complete Task.WaitAll(tasks.ToArray());
// All generated IDs are guaranteed to be unique across threads </code></pre>
Testing
This library is fully tested using SQL Server LocalDB for both local and CI/CD environments. The GitHub Actions workflow automatically sets up LocalDB, creates a test database, and runs the full test suite to ensure compatibility.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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 was computed. 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 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Data.SqlClient (>= 5.2.1)
- Microsoft.Extensions.Configuration (>= 6.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.4)
- Microsoft.Extensions.Options (>= 6.0.0)
- Pluralize.NET (>= 1.0.2)
- Polly (>= 8.3.0)
- System.Diagnostics.DiagnosticSource (>= 6.0.1)
-
net6.0
- Microsoft.Data.SqlClient (>= 5.2.1)
- Microsoft.Extensions.Configuration (>= 6.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.4)
- Microsoft.Extensions.Options (>= 6.0.0)
- Pluralize.NET (>= 1.0.2)
- Polly (>= 8.3.0)
- System.Diagnostics.DiagnosticSource (>= 6.0.1)
-
net8.0
- Microsoft.Data.SqlClient (>= 6.0.2)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Options (>= 8.0.2)
- Pluralize.NET (>= 1.0.2)
- Polly (>= 8.3.0)
- System.Diagnostics.DiagnosticSource (>= 9.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.