Trellis.Primitives 3.0.0-alpha.428

This is a prerelease version of Trellis.Primitives.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Trellis.Primitives --version 3.0.0-alpha.428
                    
NuGet\Install-Package Trellis.Primitives -Version 3.0.0-alpha.428
                    
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="Trellis.Primitives" Version="3.0.0-alpha.428" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Trellis.Primitives" Version="3.0.0-alpha.428" />
                    
Directory.Packages.props
<PackageReference Include="Trellis.Primitives" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Trellis.Primitives --version 3.0.0-alpha.428
                    
#r "nuget: Trellis.Primitives, 3.0.0-alpha.428"
                    
#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.
#:package Trellis.Primitives@3.0.0-alpha.428
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Trellis.Primitives&version=3.0.0-alpha.428&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Trellis.Primitives&version=3.0.0-alpha.428&prerelease
                    
Install as a Cake Tool

Trellis.Primitives

NuGet Package

Strongly typed value objects for .NET, with built-in primitives like EmailAddress and Money plus composite JSON conversion and tracing registration for primitive value objects.

Installation

dotnet add package Trellis.Primitives

The Required*<TSelf> and ScalarValueObject<TSelf, TUnderlying> base classes live in Trellis.Core. The source generator, generated primitive JSON converter, and primitive trace source are bundled inside the Trellis.Core package (transitively referenced by Trellis.Primitives) — no extra package is required.

Quick Example

using Trellis;
using Trellis.Primitives;

// TryCreate returns Result<T>; pattern-match before using the value.
var emailResult = EmailAddress.TryCreate("ada@example.com");

// Money.Create throws on invalid input; use TryCreate for user input.
var subtotal = Money.Create(12.34m, "USD");
var shipping = Money.Create(2.00m, "USD");

// Arithmetic on Money returns Result<Money> (currency-mismatch / overflow safe).
Result<Money> grandTotal = subtotal.Add(shipping);

// Define a custom value object — the source generator emits TryCreate, equality, JSON converters, etc.
// RequiredString rejects null/empty/whitespace and trims by default; RequiredGuid rejects Guid.Empty.
public sealed partial class CustomerEmail : RequiredString<CustomerEmail>;
public sealed partial class OrderId : RequiredGuid<OrderId>;

Key Features

  • Ready-to-use value objects for common concepts such as email, URL, money, and percentages.
  • Trellis.Core base classes like RequiredString<CustomerEmail> and RequiredGuid<OrderId> for custom domain types.
  • Lenient-by-default generated validation (rejects null only); opt into sentinel rejection with [NotDefault] and string trimming with [Trim] when domain strictness is required.
  • Validation and parsing rules that stay with the type instead of leaking into handlers and controllers.

Documentation

Part of Trellis

This package is part of the Trellis framework.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Trellis.Primitives:

Package Downloads
Trellis.EntityFrameworkCore

EF Core integration for Trellis. Convention-based value converter registration for Trellis primitives, Result-returning SaveChanges wrappers, Maybe/Result query extensions, and provider-agnostic database exception classification.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.0-alpha.432 69 7/6/2026
3.0.0-alpha.428 112 7/3/2026
3.0.0-alpha.425 151 6/27/2026
3.0.0-alpha.419 83 6/24/2026
3.0.0-alpha.418 237 6/23/2026
3.0.0-alpha.417 77 6/23/2026
3.0.0-alpha.397 122 6/18/2026
3.0.0-alpha.396 71 6/18/2026
3.0.0-alpha.394 91 6/18/2026
3.0.0-alpha.385 76 6/15/2026
3.0.0-alpha.382 80 6/12/2026
3.0.0-alpha.372 82 6/10/2026
3.0.0-alpha.360 111 6/7/2026
3.0.0-alpha.342 98 6/5/2026
3.0.0-alpha.337 73 6/3/2026
3.0.0-alpha.336 63 6/3/2026
3.0.0-alpha.304 79 5/29/2026
3.0.0-alpha.158 118 4/5/2026
3.0.0-alpha.157 74 4/4/2026
3.0.0-alpha.140 80 3/30/2026
Loading failed