Flaminco.Identifier 1.0.1

dotnet add package Flaminco.Identifier --version 1.0.1                
NuGet\Install-Package Flaminco.Identifier -Version 1.0.1                
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="Flaminco.Identifier" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Flaminco.Identifier --version 1.0.1                
#r "nuget: Flaminco.Identifier, 1.0.1"                
#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.
// Install Flaminco.Identifier as a Cake Addin
#addin nuget:?package=Flaminco.Identifier&version=1.0.1

// Install Flaminco.Identifier as a Cake Tool
#tool nuget:?package=Flaminco.Identifier&version=1.0.1                

Flaminco.Identifier

The Flaminco.Identifier library offers a robust, type-safe mechanism for handling entity identifiers in .NET applications, using GUIDs to ensure uniqueness while preventing the accidental interchange of identifiers between different entity types.

Features

  • Type Safety: Guarantees that identifiers are specific to their entity types, eliminating the risk of mixing up identifiers between entities.
  • GUID Utilization: Leverages globally unique identifiers (GUIDs) to ensure the uniqueness of each identifier.
  • Ease of Use: Provides a straightforward approach to generating and managing entity-specific identifiers with support for implicit conversion to and from Guid, simplifying integration with existing systems.

Getting Started

Installation

To install the Flaminco.Identifier package, use the following command in the .NET CLI:

dotnet add package Flaminco.Identifier

Usage

Define an Identifier for Your Entity

public class User 
{
    public Identifier<User> Id { get; set; }
}

Best Practices

Utilize Identifier<TEntity> wherever you need a unique identifier for an entity, to leverage type safety and avoid the pitfalls of using raw GUIDs or other primitive types. When designing APIs or services, prefer accepting and returning Identifier<TEntity> to enforce type safety across your application's boundaries.

Contribution

Contributions are welcome! If you have suggestions, bug reports, or contributions, please submit them as issues or pull requests on our GitHub repository.

License

This project is licensed under the MIT License.

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 236 2/4/2024
1.0.0 116 2/3/2024