StronglyTyped.GuidIds 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package StronglyTyped.GuidIds --version 1.0.0
NuGet\Install-Package StronglyTyped.GuidIds -Version 1.0.0
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="StronglyTyped.GuidIds" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add StronglyTyped.GuidIds --version 1.0.0
#r "nuget: StronglyTyped.GuidIds, 1.0.0"
#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 StronglyTyped.GuidIds as a Cake Addin
#addin nuget:?package=StronglyTyped.GuidIds&version=1.0.0

// Install StronglyTyped.GuidIds as a Cake Tool
#tool nuget:?package=StronglyTyped.GuidIds&version=1.0.0

StronglyTyped.GuidIds

What is this? Why do I want this?

This library includes an Id<T> struct that can be used for typing Guid based identifiers in your code. This should be used if you desire an extra level of type safety for identifier variables, fields, properties, etc. In addition, it provides improved code readability by allowing you to communicate the content of a variable using both the type name as well as in the variable name.

We can take a class like this:

internal class Person {
	public Guid PersonId { get; }
	public Guid TeamId { get; }
	public Guid MostRecentInteractionId { get; }
}

And write it like this instead:

internal class Person {
	public Id<Person> PersonId { get; }
	public Id<Team> TeamId { get; }
	public Id<Interaction> MostRecentInteractionId { get; }
}

Improves code readability!

var teamIds = new List<Guid>();

var teamsByTeamId = new Dictionary<Guid, Team>();

var memberIdsByTeamId = new Dictionary<Guid, IReadOnlyList<Guid>();

Or using Id instead of Guid

var teamIds = new List<Id<Team>>();

var teamsByTeamId = new Dictionary<Id<Team>, Team>();

var memberIdsByTeamId = new Dictionary<Id<Team>, IReadOnlyList<Id<Member>>();

Catch coding mistakes earlier!

interface TeamMemberStore {
	Guid CreateTeamMember(Guid teamId, Guid personId, Guid interactionId)
}

_teamMemberStore.CreateTeamMember(team.TeamId, person.PersonId, userSession.InteractionId);
// Compiles Fine! Works fine at runtime since everything was done right!

_teamMemberStore.CreateTeamMember(person.PersonId, team.TeamId, userSession.InteractionId);
// Compiles Fine!
//  Best case it fails at runtime because of a foreign key was configured on the database and it's fairly obvious what we did wrong.
//  Worst case it doesn't work and we waste a whole lot of time trying to figure out why we can't get joining a team to work only to realize we made this stupid mistake.

Or using Id instead of Guid

interface TeamMemberStore {
	Id<TeamMember> CreateTeamMember(Id<Team> teamId, Id<Person> personId, Id<Interaction> interactionId)
}

_teamMemberStore.CreateTeamMember(team.TeamId, person.PersonId, userSession.InteractionId);
// Compiles Fine! Works fine at runtime since everything was done right!

_teamMemberStore.CreateTeamMember(person.PersonId, team.TeamId, userSession.InteractionId);
// Does not compile! We don't even have to run the application to catch this type is error. A red, swiggly underline shows us the problem!
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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. 
.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on StronglyTyped.GuidIds:

Package Downloads
StronglyTyped.GuidIds.Dapper

This is a companion library for to integrate StronglyTyped.GuidIds as a usable type in a Dapper query in an easy way.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0 5,583 10/22/2019
2.0.0 571 10/19/2019
1.1.0 490 10/15/2019
1.0.1 608 10/9/2019
1.0.0 452 10/9/2019