StrongTypedId 1.0.3
See the version list below for details.
dotnet add package StrongTypedId --version 1.0.3
NuGet\Install-Package StrongTypedId -Version 1.0.3
<PackageReference Include="StrongTypedId" Version="1.0.3" />
paket add StrongTypedId --version 1.0.3
#r "nuget: StrongTypedId, 1.0.3"
// Install StrongTypedId as a Cake Addin #addin nuget:?package=StrongTypedId&version=1.0.3 // Install StrongTypedId as a Cake Tool #tool nuget:?package=StrongTypedId&version=1.0.3
StrongTypedId
A super small library for providing strong typed Ids (as opposed to using primitives).
The benefit of this is simple: You don't run the risk of accidentally using the wrong type of id. (e.g. sending a UserId into a query for products)
This works through the use of an abstract base class (StrongTypedId<TStrongTypedId, TPrimitiveId>
) which is inherited to gain the id functionality.
This project is inspired by Andrew Lock's StronglyTypedId: https://github.com/andrewlock/StronglyTypedId. However I needed support for .Net 5 and thus this project was born.
Installation
I recommend using the NuGet package: https://www.nuget.org/packages/StrongTypedId/ however you can also simply copy the class StrongTypedId into your project, as it's a single class solution.
Usage
Specify your class like this:
[JsonConverter(typeof(UserId.StrongTypedIdJsonConverter))]
public class UserId: StrongTypedId<UserId, Guid>
{
public UserId(Guid value) : base(value)
{
}
}
This specifies that the class UserId is in fact a Guid and can be used in place of a Guid. And that's basically all there is to it, now you just use UserId in place of Guid where you're dealing with an User's Id.
You can omit the JsonConverter if you don't use json serialization.
Compatibility
WebAPI
This is supported through the use of the JsonConverter.
Entity Framework
You'll need to add a conversion for EF to work properly, luckily this is easily done in the OnModelCreating
method on your DbContext
.
Assume you have an User class which uses the UserId:
public class User
{
public UserId Id { get; set; }
public string Username { get;set; }
// And so forth
}
You'll then add the conversion for the UserId in EF like this:
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<User>(entity =>
{
entity.HasKey(e => e.Id);
entity.Property(e => e.Id)
.HasConversion(e => e.PrimitiveId, primitiveId => new UserId(primitiveId));
});
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. |
-
net5.0
- No dependencies.
NuGet packages (5)
Showing the top 5 NuGet packages that depend on StrongTypedId:
Package | Downloads |
---|---|
StrongTypedId.NewtonSoft
NewtonSoft.Json JsonConverter for the StrongTypedId library |
|
StrongTypedId.Dapper.DDD.Repository
TypeConverter extension for easy usage of StrongTypedId with the Dapper.DDD.Repository. |
|
StrongTypedId.EntityFrameworkCore
EntityFrame.Core ValueConverter for the StrongTypedId library |
|
StrongTypedId.Swagger
Swagger support for the StrongTypedId library |
|
StrongTypedId.MongoDB
Serialization extension for easy usage of StrongTypedId with MongoDB. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.9.2 | 437 | 11/15/2024 |
1.9.1 | 61 | 11/13/2024 |
1.9.0 | 102 | 11/11/2024 |
1.8.0 | 14,272 | 8/26/2024 |
1.7.0 | 16,019 | 5/10/2024 |
1.6.6 | 8,295 | 2/9/2024 |
1.6.5 | 382 | 2/5/2024 |
1.6.4 | 227 | 1/31/2024 |
1.6.3 | 835 | 1/8/2024 |
1.6.2 | 5,772 | 10/10/2023 |
1.6.1 | 589 | 9/8/2023 |
1.6.0 | 397 | 7/18/2023 |
1.5.1 | 482 | 7/15/2023 |
1.5.0 | 238 | 7/15/2023 |
1.4.3 | 366 | 7/11/2023 |
1.4.2 | 206 | 7/11/2023 |
1.4.1 | 233 | 7/11/2023 |
1.4.0 | 217 | 7/10/2023 |
1.3.0 | 1,134 | 5/21/2023 |
1.2.0 | 878 | 1/21/2023 |
1.1.7 | 2,330 | 12/7/2022 |
1.1.6 | 300 | 12/6/2022 |
1.1.5 | 606 | 8/5/2022 |
1.1.4 | 3,749 | 7/10/2022 |
1.1.3 | 844 | 7/10/2022 |
1.1.2 | 660 | 5/12/2022 |
1.1.1 | 1,078 | 3/12/2022 |
1.1.0 | 465 | 3/12/2022 |
1.0.3 | 399 | 3/12/2022 |
1.0.2 | 437 | 3/7/2022 |
1.0.1 | 444 | 3/6/2022 |
1.0.0 | 398 | 3/6/2022 |